C#对System.Transactions事务处理方法

using (TransactionScope Tran = new TransactionScope())

 {

//

Tran.Complete();

 }
特别注意:try{}catch{}要加在Tran.Complete()外 否则不起作用


try
{

 }
 catch (Exception ex)
 {

}


原文链接:C#对System.Transactions事务处理方法