Working With Database Transactions In EF Core

Поділитися
Вставка

КОМЕНТАРІ • 116

  • @MilanJovanovicTech
    @MilanJovanovicTech  Рік тому

    Want to master Clean Architecture? Go here: bit.ly/3PupkOJ
    Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt

  • @md.redwanhossain6288
    @md.redwanhossain6288 8 місяців тому +9

    A quick tips: if you use DbTransaction abstract class instead of IDbTransaction interface, you can use async methods.

    • @MilanJovanovicTech
      @MilanJovanovicTech  8 місяців тому +1

      Figured that out recently! But thanks for posting the comment. I'm sure it will help someone.

  • @JoeMeyer8998
    @JoeMeyer8998 Рік тому +9

    Instead of putting rollback into a try/catch you could also implement a Dispose method the calls rollback if the initial BeginTransaction has not been commited yet. So when the transaction goes out of scope without being commited, Roolback ist called automagically. If you'd want nested transactions you can implement a NumberOfOpenTransactions counter

    • @mrwalkan
      @mrwalkan Рік тому

      can you give more insight on your saying.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +2

      The Transaction object will also call Rollback in its Dispose method. However, I don't like this implicit behavior and prefer to make it explicit with a try/catch block.

    • @JoeMeyer8998
      @JoeMeyer8998 Рік тому +4

      @@MilanJovanovicTech So if Rollback is already being executed in a Dispose method anyway, what's the use of having to call it implicitely? No offense, Milan, but IMHO the try/catch/Rollback are unneeded, even introduce redundant code, and therefore should be removed for the sake of simplicity and good readability. The using statement already tells the reader explicitely that unmanaged resources (in this case the transaction) are freed when the using block goes out of the scope

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      @@JoeMeyer8998 There was an issue you could run into if you don't rollback manually. I'm trying to find the documentation link I ran into for reference, but can't find it at the moment :(

    • @ezecel9
      @ezecel9 5 місяців тому +1

      public async Task BeginTransaction(Func action, IsolationLevel isolationLevel = IsolationLevel.ReadCommitted)
      {
      using (var transaction = _dbContext.Database.BeginTransaction(isolationLevel))
      {
      try
      {
      await action();
      await transaction.CommitAsync();

      }
      catch (Exception)
      {
      transaction.Rollback();
      throw;
      }
      }
      }

  • @zaharivaklinov
    @zaharivaklinov Рік тому +2

    Nicely put. I had an idea what transactions are used for and have only ever seen 1-2 implementations of them, but with debugging them in this video I understood them more.

  • @cheeseburger1884
    @cheeseburger1884 Рік тому +3

    Thanks Milan! The debugging part is really the cherry on top of an already delicious cake. You are very good at this, I'm proud I found this channel. Your content is gold mate, I'm having a lot of fun =)

  • @nafisrahman5791
    @nafisrahman5791 Рік тому +6

    I Appreciate the bright screen warnings lol

  • @anushkashan492
    @anushkashan492 Рік тому +1

    I like al of your series, I'm in the industry almost for 8 years, I rarely seen people doing videos with good content. Very informative. Keep it up buddy.

  • @davidsalazar66
    @davidsalazar66 Рік тому +6

    Bright screen incoming 🤣🤣 Great video

  • @pilotboba
    @pilotboba Рік тому +2

    Rather than switching to "bright screen" SSMS you can also use the SQL Server tools built into visual studio to run queries and show data. :)

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      You have a good point there! Thing is, I never used it. So the idea didn't even cross my mind.

  • @stavrosk.3773
    @stavrosk.3773 Рік тому +1

    Great content. Very happy to have discovered your channel. Keep up the good work!

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      Welcome aboard! And you can expect more great things in the future 😁

  • @davidsantacruz7195
    @davidsantacruz7195 Рік тому +2

    Great job Milan. I'm not a big fan of EF. Please consider making a video about transactions with Dapper.

  • @zameer.vighio
    @zameer.vighio Рік тому +9

    Hi Milan can you please make a video on GLOBALIZATION & LOCALIZATION with shared resources in NET CORE 6

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +2

      Alright, seems like people wanna see it 😁

    • @adisilagy
      @adisilagy Рік тому

      +1 this will be great!

    • @zameer.vighio
      @zameer.vighio Рік тому

      @@MilanJovanovicTech yes, Thanks s lot in advance. May Allah always bless you

    • @zameer.vighio
      @zameer.vighio Рік тому +1

      @@MilanJovanovicTech in today's video reminding you about this 'Shared Culture'

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      @@zameer.vighio Okay, I see. I added this to my content list. But I can't promise when it'll be released. Won't be soon.

  • @pietropivavieira7988
    @pietropivavieira7988 Рік тому +1

    Great video Milan! Keep it up with the good work!

  • @alekseis7907
    @alekseis7907 Рік тому +3

    Thank you! It would be great if you tell more about isolation levels in one of your next video!

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      I think it's something people rarely think about, and even fewer people understand. I'll consider it though!

  • @Tolmachovtv
    @Tolmachovtv 10 місяців тому +1

    Awesome video, way to go! Thanks for bright screen notification )😃

  • @vasilemoraru89
    @vasilemoraru89 Рік тому +1

    Thanks Milan!
    My question is regarding "BeginTransaction()" method and it return type.
    You are telling at the end, that is possible to return a different type to expose less methods.
    Could you give a code example, because i did not understood this point.
    Thanks !!!

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      The DbContext stores a 'CurrentTransaction' instance internally. You can just wrap the calls to BeginTrasaction/CommitTransaction, and don't need to return the transaction instance.

  • @fxri3637
    @fxri3637 Рік тому +2

    great video!!

  • @milosmilovanovic3618
    @milosmilovanovic3618 Рік тому +1

    If any of the savechanges fail, we would then go to rollback in the catch block?
    Thanks for an amazing explanation as always!

  • @BeyondAppearances-0
    @BeyondAppearances-0 Рік тому +1

    Thanks Milan.,
    But i don't see what the RollBack is actually for, since anyway as long as we haven't reached the transaction.Commit(), nothing is written in the database ?
    Could you please detail that point ?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      For closing the transaction, and reverting any partial changes. For example, you could have a few SaveChanges calls in a single transaction. And those changes should be visible to queries in the same transaction.

    • @BeyondAppearances-0
      @BeyondAppearances-0 Рік тому

      @@MilanJovanovicTech Thanks Milan, but how could those SaveChanges affect the Database whereas the transaction.Commit() has not been done ?

  • @arjundate
    @arjundate Рік тому +1

    Thanks Milan...!

  • @GiorgiChikovani_FromGeorgia
    @GiorgiChikovani_FromGeorgia 4 місяці тому

    Thanks for a video. Very necessary Topic 🙌

  • @welfas4580
    @welfas4580 Рік тому +1

    Hi, Is it common to share transactions between different contexts? Or every context have your transaction life?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      Each context (assuming it's a different type) will have it's own connection to the DB and thus a different transaction

  • @alfonsdeda8912
    @alfonsdeda8912 Рік тому +1

    Hi Milan, I have done your same thing with unit of work and injected dbcontext and other services that I use in my project, for dependency injection i have used autofac and registered dbcontext as InstanceForLifetimeScope so all injected services in my unit of work capture the same dbcontext, because every service inject dbcontext, all works if I do begintransaction the first time, but if I want to do again i get exception that dbcontext has already a transaction, shouldn't be disposed automatically with autofac or at least the transaction.commit() close the transaction, what if I want to get new transaction every request and not keeping the old? Thanks in advance. I hope i was clear.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      You must've done something wrong, since the transaction should be disposed along with the DbContext

    • @alfonsdeda8912
      @alfonsdeda8912 Рік тому

      I inject unit of work in form and I want to use every time that I press the save button, that can be pressed multiple times, but every time I need to create new transaction, if I do like you did the previous transaction is not disposed and I get the exception that the transaction has already been started, how can I fix that? Thanks in advance.

    • @nguyentoan2002
      @nguyentoan2002 Рік тому

      It is the same for me..

  • @nguyentoan2002
    @nguyentoan2002 Рік тому +1

    I have trouble in this bug "System.InvalidOperationException: 'A second operation was started on this context instance before a previous operation completed", I mean I just executed transaction for the first time but the second was not

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      You have to commit or rollback a transaction before creating a new one

  • @icemanja
    @icemanja Рік тому +1

    Great video! Based on what you demonstrated do you need to use rollback if the update won’t execute without the commit being triggered?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      If the commit isn't triggered, then it's like there were no changes applied to the database. So there's nothing to rollback.

    • @100valiant
      @100valiant Рік тому

      @@MilanJovanovicTech so then what is the purpose of rollback transaction 🤔

  • @abhinavsrivastava2128
    @abhinavsrivastava2128 4 місяці тому

    There is a subtle problem with the implementation. The get gathering by id call is still a separate transaction (since every sql statement is treated as an implicit transaction, in case we dont specify explicitly) and in case of concurrent writes, it might lead to the invitation object becoming stale by the time we try to write to db. Obviously it will throw and the catch clause would ensure graceful exits but we can improve the number of failed writes by having the read call within the same transaction in which we are writing. Please let me know ur thoughts... also nice video.. cheers 😊😊

    • @MilanJovanovicTech
      @MilanJovanovicTech  4 місяці тому

      | Obviously it will throw
      Only if we have optimistic concurrency.
      The default isolation level is ReadUncommitted, which doesn't lock rows in a transaction - so that won't help with the first query.

    • @abhinavsrivastava2128
      @abhinavsrivastava2128 4 місяці тому

      @@MilanJovanovicTech no, the default isolation level for postgres is ReadCommitted which uses exclusive locks during writes

  • @tomekbednarek2672
    @tomekbednarek2672 10 місяців тому

    Don't you think it would be a good idea to also have the read operations within the transaction? Having a more strict isolation level, the read rows would also be locked by the db to make the whole method atomic from the perspective of the db.

    • @MilanJovanovicTech
      @MilanJovanovicTech  10 місяців тому +1

      Sure, if we set the isolation level so some of the more restrictive values

  • @vadymivanenko8591
    @vadymivanenko8591 Рік тому +1

    I've noticed, you're using EF's entities as your domain model. There is a kind of implicit dependency on EF because EF applies some constraints on how we should design our entities (additional constructors, setters, etc.). Is it practical to don't use EF's entities inside a domain model? Which way do you recommend?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      I've done it like this many times before, and didn't have a problem. With EF's fluent configuration you can get around most issues with encapsulating a domain model. You can have two separate models, one for the domain and one for EF, but I find it cumbersome to have to maintain two models if I can get by with just one.

  • @vidasalud9275
    @vidasalud9275 Рік тому +1

    Thanks Milan.. Do you have any DDD course with Dapper?

  • @MrEkwador
    @MrEkwador Рік тому +1

    Very good tutorial👏🏻! I am still wondering how to handle the transaction when dealing with several different data repositories. How to pass a subset of the repositories selected in a given context and validate it at the end?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      If they all share the same DbContext, they will also share the transaction

    • @MrEkwador
      @MrEkwador Рік тому

      @@MilanJovanovicTech I was thinking of the case when repositories have different databases and therefore different contexts.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      @@MrEkwador You can't - without a distributed transaction

  • @patrickbrown5141
    @patrickbrown5141 Рік тому +1

    Thank you, very informative 👍

  • @lemueljohnerispe2741
    @lemueljohnerispe2741 Рік тому +1

    Is it safe to use this Transaction in every process that is related to database?

  • @gerezd2335
    @gerezd2335 Рік тому +1

    What happens if the catch block with the Rollback() call doesn't exist and an exception is thrown?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      The transaction should roll itself back when it's disposed, but I like to make things explicit

    • @gerezd2335
      @gerezd2335 Рік тому

      @@MilanJovanovicTech Thanks!

  • @S3Kglitches
    @S3Kglitches Рік тому +1

    So now the real issue:
    How to commit it async?
    I am using TransactionScope which can wrap multiple DbContext instances on the same connection string but there is this issue - the async version of the commit call is not available.

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      You can't, it doesn't have an async API

    • @S3Kglitches
      @S3Kglitches Рік тому

      @@MilanJovanovicTech Then is there a workaround you suggest e.g. with Task.Run()? Do you think it is a good idea? I am thinking of a server process doing these transactions, that might be a real bottleneck when it's blocking calls.

    • @S3Kglitches
      @S3Kglitches Рік тому

      @@MilanJovanovicTech I am surprised to have found DbTransaction.CommitAsync on microsoft online documentation :D

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      @@S3Kglitches Only for EF Core's transaction as far as I'm aware 🤔

  • @sankarroychowdhury4655
    @sankarroychowdhury4655 8 місяців тому

    Milan, how to handle deadlock situation due to transaction block

  • @andresperalta2837
    @andresperalta2837 Рік тому +1

    Hello excellent video, out of curiosity you have the link to github, greetings from Colombia.

  • @mustafaahmed7296
    @mustafaahmed7296 11 місяців тому

    I have a problem with this, rolling back is not working and changes are not reverted. not sure what's the reason

  • @mateuszkaleta1495
    @mateuszkaleta1495 Рік тому +1

    Is it not better to use transaction Scope?

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому

      It doesn't support async operations - but otherwise, works fine. Note however that the transaction isn't committed until TransactionScope is dispoed

    • @mateuszkaleta1495
      @mateuszkaleta1495 Рік тому

      @@MilanJovanovicTech when You will enable transactionScopeAsyncFlowOption it will works, additionally if I will have for example 5 repositories instances (for example I will call methods from injected classes) I don't care about it, just all saveChanges taken to one Transaction. I'm just wondering if TransactionScope is more elastic solution. (Of course all depends :) but what do You think?)

  • @MTSightseeing
    @MTSightseeing Рік тому +1

    CAN YOU SHARE YOUR GATHERLY GITHUB REPOSITORY need a project structure please

  • @AmirHashemZadeh
    @AmirHashemZadeh Рік тому +1

    it was useful :)

  • @baebcbcae
    @baebcbcae Рік тому +1

    it's not all, you didn't cover read committed, no need to have a couple of saves for that scenario, just do the validation for some uniqueness and make one save, call this logic concurrently and you'll be surprised =)

    • @MilanJovanovicTech
      @MilanJovanovicTech  Рік тому +1

      Maybe in another video

    • @baebcbcae
      @baebcbcae Рік тому

      @@MilanJovanovicTech I have just struggled with this whole night, transaction scope with serializable isolation level helped

  • @lamayig8483
    @lamayig8483 Рік тому +1

    your code Theme color is attractive please tel me the name

  • @mocococo2877
    @mocococo2877 Рік тому +1

    Great work. Thank you.
    One question I have on your code. After if (attendeeResult.IsSuccess) should you not put "else" and inside it to roll back the transaction ? I mean if it is all or nothing.
    Thank you.