Skip to main content
 首页 » 编程设计

linq之Entity Framework : There is already an open DataReader associated with this Command

2024年10月01日20jillzhang

我正在使用 Entity Framework ,偶尔会出现此错误。

EntityCommandExecutionException 
{"There is already an open DataReader associated with this Command which must be closed first."} 
   at System.Data.EntityClient.EntityCommandDefinition.ExecuteStoreCommands... 

即使我没有进行任何手动连接管理。

此错误间歇性发生。

触发错误的代码(为了便于阅读而缩短):
        if (critera.FromDate > x) { 
            t= _tEntitites.T.Where(predicate).ToList(); 
        } 
        else { 
            t= new List<T>(_tEntitites.TA.Where(historicPredicate).ToList()); 
        } 

使用 Dispose 模式以便每次打开新连接。
using (_tEntitites = new TEntities(GetEntityConnection())) { 
 
    if (critera.FromDate > x) { 
        t= _tEntitites.T.Where(predicate).ToList(); 
    } 
    else { 
        t= new List<T>(_tEntitites.TA.Where(historicPredicate).ToList()); 
    } 
 
} 

仍然有问题

如果连接已经打开,为什么 EF 不重用它。

请您参考如下方法:

这与关闭连接无关。 EF 正确管理连接。我对这个问题的理解是,有多个数据检索命令在单个连接(或具有多个选择的单个命令)上执行,而下一个 DataReader 在第一个完成读取之前执行。避免异常的唯一方法是允许多个嵌套的 DataReaders = 打开 MultipleActiveResultSets。总是发生这种情况的另一种情况是,当您遍历查询结果 (IQueryable) 时,您将在迭代中触发加载实体的延迟加载。