All your videos are really unique and 100% has a new info , i hope you make another video with more EF Core Performance Tips and Trickles and best practices
@talkathiriify Жыл бұрын
Very excellent and smooth explanation Thank you very much brother Mohamad.
@MohamadLawand Жыл бұрын
Thank you
@oleksiiprykhodko517 Жыл бұрын
I'm a simple guy. I see a new video of this bearded wizard, I like it. 🙂
@MohamadLawand Жыл бұрын
I appreciate it, thank you
@alejandro_93 Жыл бұрын
Very useful all your videos, very instructive and easy to understand. Greetings from Cuba, thank you.
@MahmoudSaed98 Жыл бұрын
I respect you a lot bro.
@inderjitsingh9634 Жыл бұрын
Is it safe from SQL injection?
@MohamadLawand Жыл бұрын
Yes it’s safe
@adebisiadebanjo-g8j Жыл бұрын
Amazing video
@RoyZASTEROiD Жыл бұрын
thank you
@nuthanmurari Жыл бұрын
Thanks for the valuable information but if you provide me an option using EF Core methods instead of inline update statement to update the records in bulk for optimization that would really help. Please do a video on this. From this video even i cleared few concepts which i don't aware earlier... Kudos for your efforts.
@zagoskintoto Жыл бұрын
Particularly from the type of update shown in the video, which sets the same value for every ticket (the updated date is ms in difference and could just be the same) from .EF Core 7 you can do IQueryable ExecuteUpdate(). Other than that, you would require a package specific for bulk operations.
@soucianceeqdamrashti817511 ай бұрын
@Mohamad Lawand, surely the app settings is not dynamically configurable with that code only. How is the configuration section going to detect that the app settings has been changed? Don't you need a configuration refresher?
@sandanuwan444110 ай бұрын
Thanks for the Video. Can we use this ExecuteSqlInterpolatedAsync for when we GET data from the DB, instead of Update
@nouchance Жыл бұрын
Thanks!
@abdelmajidbaco39466 ай бұрын
hello, thanks for your work. Now with .NET 8/7 we can also use ExecuteUpdateAsync/ExecuteDeleteAsync extension to update/delete rows in single request query. To bind configuration in my program.cs I prefer to use extension with generics like this : var dbConfig = builder.Configuration.GetSection("DatabaseConfig").Get(). Thanks again
@rahul_salokhe Жыл бұрын
Hello, I have a question If any error occurred between DbContext.Database.BeginTransaction() and commit transaction . Is there rollback transaction?