我正在使用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不重用它。
predicate
和historicPredicate
变量的类型。我发现,如果传递Func<T, bool>
给Where()
它,它将编译并且有时可以工作(因为它在内存中执行“位置”)。您应该做的就是传递Expression<Func<T, bool>>
给Where()
。