成都创新互联网站制作重庆分公司

EntityFramework的事务DbTransaction

Entity Framework 的事务 DbTransaction

成都创新互联公司专注于乳山企业网站建设,响应式网站建设,商城网站制作。乳山网站建设公司,为乳山等地区提供建站服务。全流程按需定制,专业设计,全程项目跟踪,成都创新互联公司专业和态度为您提供的服务

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


分享标题:EntityFramework的事务DbTransaction
网页网址:http://cxhlcq.com/article/poiesd.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部