Thank you all for watching and for your support. ►► If you want to master Web API development using best practices, check out our Web API book: bit.ly/3x75ZMM ►► Also, to build great full-stack apps with Blazor, check out our course: bit.ly/3Pw3Y33
Blease, Can you explain how to add products to the cart by use Session ? Assuming you have 3 table product and Unit and Product_Units and the Product_Units => public class Product_Unit { [Key] public int Id { get; set; } [Required] [Display(Name = "Product Name")] public int ProductId { get; set; } [ForeignKey("ProductId")] public virtual Product? Product { get; set; } [Required] [Display(Name = "Unit Name")] public int UnitId { get; set; } [ForeignKey("UnitId")] public virtual Unit? Unit { get; set; } [Required] [Display(Name = "Price")] public decimal SpecialPrice { get; set; } Note: the product can have more than one unit Thank you in advance.
Hi. I already recorder 2FA video which will be part of this series. But, as you can see, here I used Email providers and that will be the case for the OTP (2FA) video. But, maybe I can record a video on how to send SMS in ASP.NET Core and all everyone needs to do is simply replace the email service with the phone service. It should be pretty easy. But for now, an email service will be used.
Have you checked if it is well decoded? If you just copy-paste it from the email message it will not be valid (as I mentioned in the video). This is the only idea that comes to my mind since I don't have any other details provided.
Thank you all for watching and for your support.
►► If you want to master Web API development using best practices, check out our Web API book: bit.ly/3x75ZMM
►► Also, to build great full-stack apps with Blazor, check out our course: bit.ly/3Pw3Y33
Thank you so much mate
No problem 👍
thank you so much for the explanation
Glad it was helpful!
Best Tutorial!
Glad you think so! Thanks for the support mate.
from where you get the decoded token?
You can use any online service to decode it, or add a breakpoint where you create it and copy it from VS.
This is actually very very nie
Thank you. I am glad you like it.
how can i get the source code ???
The link to the patreon membership is in the description. You get other benefits next to a source code.
Blease, Can you explain how to add products to the cart by use Session ? Assuming you have 3 table product and Unit and Product_Units and the Product_Units => public class Product_Unit
{
[Key]
public int Id { get; set; }
[Required]
[Display(Name = "Product Name")]
public int ProductId { get; set; }
[ForeignKey("ProductId")]
public virtual Product? Product { get; set; }
[Required]
[Display(Name = "Unit Name")]
public int UnitId { get; set; }
[ForeignKey("UnitId")]
public virtual Unit? Unit { get; set; }
[Required]
[Display(Name = "Price")]
public decimal SpecialPrice { get; set; } Note: the product can have more than one unit
Thank you in advance.
I am very excited about this lesson
💯💯👍
Thank you.
Hell😊 Dear Brother,
I've a humble request to you that, How to implement PHONE OTP in. NET Core Project?
Hi. I already recorder 2FA video which will be part of this series. But, as you can see, here I used Email providers and that will be the case for the OTP (2FA) video. But, maybe I can record a video on how to send SMS in ASP.NET Core and all everyone needs to do is simply replace the email service with the phone service. It should be pretty easy. But for now, an email service will be used.
@@CodeMaze Thank you brother.
I've a 3rd party SMS API GATEWAY Services.
How to implement in. NET CORE?
Could I share the credentials of sms apis?
I am not sure about that, and which third party lib you have. Anyway, maybe this article can help: code-maze.com/send-sms-aspnetcore/
@@CodeMaze docs.google.com/document/d/10sXwgdtk0koYFPYon7iZXlguZMYSWINcKjdycWpKVTI/edit?usp=drivesdk
I got Invalid token when submitting.
Have you checked if it is well decoded? If you just copy-paste it from the email message it will not be valid (as I mentioned in the video). This is the only idea that comes to my mind since I don't have any other details provided.
@@CodeMaze Yes, It was a encoded, I've decoded it when passing the token to "ResetPasswordAsync" and it worked. Thanks!
100%
Thanks.