实体框架:TransactionScope 有不同的 IsolationLevel
Posted
技术标签:
【中文标题】实体框架:TransactionScope 有不同的 IsolationLevel【英文标题】:Entity Framework: TransactionScope has a different IsolationLevel 【发布时间】:2015-11-12 14:33:23 【问题描述】:我正在尝试在域级别使用TransactionScope
,因此我可以跨(可能)多个存储库操作数据,同时将所有数据保存在同一个事务中。
我有以下保存方法:
public void Save(MyEntity source)
using (var scope = new TransactionScope())
var context = new MyEFEntities(environment.ConnectionString);
this.Repository.Add(source.ToDbMyEntity(), context);
context.SaveChanges();
scope.Complete();
但我在.SaveChanges()
上收到以下错误:
为 TransactionScope 指定的事务具有不同的 IsolationLevel 大于为范围请求的值。参数名称: transactionOptions.IsolationLevel
这是什么原因造成的?
【问题讨论】:
您能告诉我您数据库中当前的Isolation Level
吗? ***.com/questions/1038113/…
【参考方案1】:
我认为Entity框架的默认隔离级别是数据库的默认隔离级别,例如SqlServer的默认隔离级别是READ COMMITTED
,而TransactionScope的默认隔离级别是Serializable
,所以当你尝试在里面更改它时using (var scope = new TransactionScope())
阻止它引发错误。试试这样的:
var transactionOptions = new TransactionOptions();
transactionOptions.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;
using (var scope = new TransactionScope(TransactionScopeOption.Required, transactionOptions));
【讨论】:
以上是关于实体框架:TransactionScope 有不同的 IsolationLevel的主要内容,如果未能解决你的问题,请参考以下文章
如何在多实例应用程序上处理 TransactionScope?
OracleInternal.MTS.DTCPSPEManager 错误
TransactionScope:具有不同数据库连接的嵌套事务(SQL Server 和 Postgresql)