1、在项目中添加System.Transactions命名空间

2、在代码中编写如下代码段:

            using (var trans = new TransactionScope())
{
EF的代码
trans.Complete();
}

  

05-11 14:03