我在我的项目中使用 Linq-to-Entity (EF 4.0)。我想在我的代码中使用事务。我发现了两种在我的代码中使用事务的方法。System.Transaction 和 System.Data.Common.DbTransaction 有什么区别?哪个性能更好?
第一的:
using (testEntities ent = new testEntities())
{
ent.Connection.Open();
using (System.Data.Common.DbTransaction transaction = ent.Connection.BeginTransaction())
{
try
{
...
int er1 = ent.SaveChanges();
if (er1 > 0)
success = true;
else
success = false;
...
int er2 = ent.SaveChanges();
if (er2 > 0)
success = true;
else
success = false;
}
catch
{
success = false;
}
success = false;
if (success)
transaction.Commit();
else
transaction.Rollback();
}
}
第二:
using (testEntities ent = new testEntities())
{
ent.Connection.Open();
using (TransactionScope tscope= new TransactionScope())
{
...
int er1 = ent.SaveChanges();
...
int er2 = ent.SaveChanges();
tscope.Complete();
}
}