1.本地事务
using System.Transactions; using (var ts = new TransactionScope(TransactionScopeOption.RequiresNew, new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted })) { }
本地事务
原文:http://www.cnblogs.com/zhshlimi/p/7505330.html