• Entity Framework 事务处理SaveChanges(false)


    Most of the time the Entity Framework (EF) can manage transactions for you.

    Every time you Add an Entity, Delete an Entity, Change an Entity, Create a Relationship or Delete a Relationship in your .NET code, these changes are remembered by the EF, and when you call SaveChanges()these are converted to appropriate native SQL commands and executed in the database in a transaction.

    Sometimes however you want to use your own transaction. Situations where this is useful include:

    • Working with an object context and attempting to put a message in a message queue within the same transaction.
    • Working with two object contexts simultaneously.
    • Etc etc etc… You get the idea.

    In these situations you want the EF to use an ambient transaction (TransactionScope) but more importantly if something goes wrong outside of the EF, you want to be able to recover.

    If you call SaveChanges() or SaveChanges(true),the EF simply assumes that if its work completes okay, everything is okay, so it will discard the changes it has been tracking, and wait for new changes.

    Unfortunately though if something goes wrong somewhere else in the transaction, because the EF discarded the changes it was tracking, we can’t recover.

    This is where SaveChanges(false) and AcceptAllChanges() come in.

    SaveChanges(false) tells the EF to execute the necessary database commands, but hold on to the changes, so they can be replayed if necessary.

    Now if the broader transaction fails you can retry the EF specific bits, with another call to SaveChanges(false). Alternatively you can walk through the state-manager to log what failed.

    Once the broader transaction succeeds, you simply call AcceptAllChanges() manually, and the changes that were being tracked are discarded.

    Typically pseudo-code for this is something like this…

    using (TransactionScope scope = new TransactionScope())
    {
        //Do something with context1
        //Do something with context2

        //Save Changes but don't discard yet
        context1.SaveChanges(false);

        //Save Changes but don't discard yet
        context2.SaveChanges(false);

        //if we get here things are looking good.
        scope.Complete();

        //If we get here it is save to accept all changes.
        context1.AcceptAllChanges();
        context2.AcceptAllChanges();

    }

    If you fall out of the using block because of an exception you can now potentially retry.

    Make sense?

  • 相关阅读:
    Java 练习(获取两个字符串中最大相同子串)
    STM32F103 实现 简易闹钟小程序
    STM32F103 实现 LCD显示年月日时分秒星期 并可逐值修改的日期 小程序
    Docker报错之“Failed to get D-Bus connection: Operation not permitted”
    数据结构解析
    每天一条DB2命令-004
    每天一条DB2命令-003
    每天一条DB2命令-002
    ElasticSearch系列
    模块三 GO语言实战与应用-BYTES包与字节串操作(下)
  • 原文地址:https://www.cnblogs.com/hyl8218/p/2206924.html
Copyright © 2020-2023  润新知