我在项目中使用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();
}
}
答案 0 :(得分:4)
来自msdn
System.Transactions命名空间包含允许您编写自己的事务应用程序和资源管理器的类。具体而言,您可以创建并参与一个或多个参与者的交易(本地或分布式)。
DbTransactions仅用于数据库事务。 TransactionScope为您提供自动交易注册功能。它将为您注册或创建新的交易。这可以包括数据库或分布式事务。
查看msdn以获取更多信息。