.NET 🚀🔥 : Mastering EF Core Performance: Tips, Tricks, and Best Practices

Поделиться
HTML-код
  • Опубликовано: 29 окт 2024

Комментарии • 21

  • @talkathiriify
    @talkathiriify Год назад +3

    Very excellent and smooth explanation
    Thank you very much brother Mohamad.

  • @oleksiiprykhodko517
    @oleksiiprykhodko517 Год назад +2

    I'm a simple guy.
    I see a new video of this bearded wizard, I like it. 🙂

  • @alejandro_93
    @alejandro_93 Год назад

    Very useful all your videos, very instructive and easy to understand. Greetings from Cuba, thank you.

  • @MahmoudSaed98
    @MahmoudSaed98 Год назад +1

    I respect you a lot bro.

  • @adebisiadebanjo-g8j
    @adebisiadebanjo-g8j Год назад

    Amazing video

  • @nuthanmurari
    @nuthanmurari Год назад +1

    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
      @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.

  • @soucianceeqdamrashti8175
    @soucianceeqdamrashti8175 9 месяцев назад

    @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?

  • @RoyZASTEROiD
    @RoyZASTEROiD Год назад +1

    thank you

  • @sandanuwan4441
    @sandanuwan4441 9 месяцев назад

    Thanks for the Video. Can we use this ExecuteSqlInterpolatedAsync for when we GET data from the DB, instead of Update

  • @abdelmajidbaco3946
    @abdelmajidbaco3946 5 месяцев назад

    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

  • @nouchance
    @nouchance Год назад

    Thanks!

  • @inderjitsingh9634
    @inderjitsingh9634 Год назад +3

    Is it safe from SQL injection?

  • @aasmankeneeche
    @aasmankeneeche 9 месяцев назад

    Where can I get git code repository?

  • @rahul_salokhe
    @rahul_salokhe Год назад

    Hello,
    I have a question
    If any error occurred between DbContext.Database.BeginTransaction() and commit transaction . Is there rollback transaction?

    • @MohamadLawand
      @MohamadLawand  Год назад +1

      Yes there is rollback

    • @bloopers2967
      @bloopers2967 11 месяцев назад

      ​@@MohamadLawandautomatic or have to write code?

  • @jayakumar2927
    @jayakumar2927 8 месяцев назад

    diff Postman vs insomnia.