实体框架:InvalidOperationException:无效操作.连接已关闭

本文关键字:连接 无效 框架 InvalidOperationException 实体 操作 | 更新日期: 2023-09-27 18:29:23

我使用实体框架在数据库中执行存储过程(Azure SQL Server)。

我的C#代码如下:

using (var context = new MyDataContext())
    numberOfEffectedRows = context.MySPName(this.Id);

在大多数情况下(99.9%),这是很好的工作。但是,有时它会因为以下错误而失败:

System.InvalidOperationException: Invalid operation. The connection is closed.
   at System.Data.SqlClient.SqlInternalConnectionTds.ValidateConnectionForExecute(SqlCommand command)
   at System.Data.SqlClient.SqlInternalTransaction.Rollback()
   at System.Data.SqlClient.SqlInternalTransaction.Dispose(Boolean disposing)
   at System.Data.SqlClient.SqlTransaction.Dispose(Boolean disposing)
   at System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch[TTarget,TInterceptionContext](TTarget target, Action`2 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed)
   at System.Data.Entity.Infrastructure.Interception.DbTransactionDispatcher.Dispose(DbTransaction transaction, DbInterceptionContext interceptionContext)
   at System.Data.Entity.Core.EntityClient.EntityTransaction.Dispose(Boolean disposing)
   at System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction[T](Func`1 func, IDbExecutionStrategy executionStrategy, Boolean startLocalTransaction, Boolean releaseConnectionOnSuccess)
   at System.Data.Entity.Core.Objects.ObjectContext.<>c__DisplayClass4b.<ExecuteFunction>b__49()
   at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute[TResult](Func`1 operation)
   at System.Data.Entity.Core.Objects.ObjectContext.ExecuteFunction(String functionName, ObjectParameter[] parameters)
   at ***.MyDataContext.MySPName(Nullable`1 Id) in ***
   at ***.DoSomething() in ***

发生这种情况时:

  1. 我不知道为什么会这样。在我看来,这就像是随机的
  2. 我不知道我的"MySPName"是否被执行了

有人知道为什么会发生这种情况,以及我如何知道我的存储过程是否被执行?

实体框架:InvalidOperationException:无效操作.连接已关闭

Linq查询是延迟求值的。查询将在您第一次访问numberOfEffectedRows时运行。由于在创建数据上下文时使用了"using",因此一旦超出范围,就会对其进行处理。如果您在使用的范围之外访问numberOfEffectedRows,则会发生这种情况,因为没有有效的数据上下文,查询就无法运行。

连接由于超时而关闭,因此建议您在连接字符串中检查Connect Timeout

 connectionString="Data Source=..;Initial Catalog=;Persist Security Info=..;User ID=..;Password=..;Connect Timeout=.."

对于诊断,我建议您运行SQL Server Profiler

EntityFramework上下文不是线程安全的,在执行过程中可能由于某种奇怪的原因关闭了数据上下文。

处理这种意外的一种方法是为每个请求提供一个上下文。

这是最简单的解决方案,所以您"希望"再也不会遇到这种异常。

检查此处

https://msdn.microsoft.com/en-us/library/microsoft.practices.unity.perrequestlifetimemanager(v=pandp.30).aspx

你能做的是

container.RegisterType<IDataContext, MyDataContext>(new PerRequestLifetimeManager()); 

然后在任何需要访问的地方注入DataContext。

这样,当容器被丢弃时,上下文将自动关闭