码迷,mamicode.com
首页 > 数据库 > 详细

Entity Framework 的事务 DbTransaction

时间:2017-05-08 14:36:40      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:public   null   

技术分享

public static void Transaction()
{
    myitEntities entity = null;
    DbTransaction tran = null;    try
    {
    entity = new myitEntities();
    entity.Connection.Open();
    tran = entity.Connection.BeginTransaction();
    Student st = entity.Student.FirstOrDefault(c => c.StudentID == 20);
    st.StudentName = "test";
    st.Age = 55;
    entity.SaveChanges();    // 提交事务
    tran.Commit();

    }    catch (Exception ex)
    {    if (tran != null)
    {        // 事务回滚
        tran.Rollback();
        Console.WriteLine("事务回滚");        throw ex;
    }
    }    finally {    if (entity != null && entity.Connection.State != ConnectionState.Closed)
    {
        entity.Connection.Close();
    }
    }
}

技术分享


Entity Framework 的事务 DbTransaction

标签:public   null   

原文地址:http://12883930.blog.51cto.com/12873930/1923194

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!