Get my React and ASP.NET Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=react-and-asp-net-core Get my Angular and ASP.NET Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=angular-and-asp-net-core Get my Entity Framework Core course with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=entity-framework-core-eng Get my Udemy courses with a discount: felipe-gavilan.azurewebsites.net/api/Redireccion?curso=all-my-courses
@shunfa6512 күн бұрын
it's helpful, thank you.
@Tamer_Ali2 жыл бұрын
Awesome video Mr.Felipe. waiting for the next 👍
@lucasa7175 Жыл бұрын
Thank you, it helped me!
@mumk10 ай бұрын
Thank you so much!
@Kasem975 ай бұрын
Great !!!
@FnOTradingLearner Жыл бұрын
Does it works with code behind file in razor page other than @section script ... in .cshtml.cs file ? How to use in code behind file
@muslehhaj4164 Жыл бұрын
Thanks a lot 👌
@rehmanmustafa3535 Жыл бұрын
I am trying to delete with Sweet alert. i want to delete a record from a table but it is always deleting the first record
@attilaguba856 Жыл бұрын
Might be you are using FirstOfDefault method instead use Find(id) and should be work! here is mine is working , i'm using Generics repository : public void Delete(int id) { T exists = _table.Find(id); _table.Remove(exists); }