zoukankan      html  css  js  c++  java
  • 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?

  • 相关阅读:
    mysql常用方法案例
    springboot整合mybatis
    mysql自定义函数统计订单状态:GET_ORDER_STATUS()
    mysql计算时间差-本例为计算分钟差然后/60计算小时保留一位小数,由于直接得小时只会取整
    mysql字段值为null时排序问题
    对象与内存(一)
    java基础提升(关于数组)
    项目的部署
    myeclipse中ssm的搭建
    ui自动化笔记 selenium_webdriver,ui自动化框架(web)
  • 原文地址:https://www.cnblogs.com/hyl8218/p/2206924.html
Copyright © 2011-2022 走看看