什么会导致 EntityCommandExecutionException in EntityCommandDefini

本文关键字:in EntityCommandDefini EntityCommandExecutionException 什么 | 更新日期: 2023-09-27 17:55:34

针对 SQL Server

2008 数据库运行的 C# 程序中的 SQL Server 视图中选择字段的特定 LINQ-to-SQL 查询在我的本地开发环境中运行良好,但在暂存环境中运行时会产生异常:

Exception Message: An error occurred while executing the command definition. See the inner exception for details. 
Exception Trace: System.Data.Entity.Core.EntityCommandExecutionException 
at System.Data.Entity.Core.EntityClient.Internal.EntityCommandDefinition.ExecuteStoreCommands(EntityCommand entityCommand, CommandBehavior behavior) 
at System.Data.Entity.Core.Objects.Internal.ObjectQueryExecutionPlan.Execute[TResultType](ObjectContext context, ObjectParameterCollection parameterValues) 
at System.Data.Entity.Core.Objects.ObjectContext.ExecuteInTransaction[T](Func`1 func, IDbExecutionStrategy executionStrategy, Boolean startLocalTransaction, Boolean releaseConnectionOnSuccess) 
at System.Data.Entity.Core.Objects.ObjectQuery`1.<>c__DisplayClass7.b__5() 
at System.Data.Entity.SqlServer.DefaultSqlExecutionStrategy.Execute[TResult](Func`1 operation) 
at System.Data.Entity.Core.Objects.ObjectQuery`1.GetResults(Nullable`1 forMergeOption) 
at System.Data.Entity.Core.Objects.ObjectQuery`1..GetEnumerator>b__0() 
at System.Data.Entity.Internal.LazyEnumerator`1.MoveNext() 
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) 
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) 
at [my code ...] 

导致发生此异常的原因是什么?

什么会导致 EntityCommandExecutionException in EntityCommandDefini

这可能是由

尝试选择目标数据库视图或表上实际上不存在的字段的 LINQ 查询引起的。

发生这种情况的一种方式(在我的情况下是问题所在)是忽略将最近创建的实体框架迁移部署到目标环境,该迁移将新字段添加到正在查询的视图中。

要查看的另一件事是抛出的 EntityCommandExecutionException 的内部异常(如错误消息所示)。 在本例中,内部异常的类型为 SqlException,并且具有有用的消息 Invalid column name ‘[my column name]’

因此,当运行 LINQ-to-SQL 查询时,当 EntityCommandDefinition.ExecuteStoreCommands 中的 EntityCommandExecutionException 被抛出时,要注意的事情:

  • 检查内部异常(如外部异常的错误消息所建议的那样)。
  • 确保所有实体框架迁移都已部署到目标环境(如果正在使用 EF)。
  • 检查并查看查询是否正在尝试选择不存在的字段。
这可能是

由于连接字符串中缺少"多个活动结果集"引起的。

多个活动结果集 (MARS) 是一项允许在单个连接上执行多个批处理的功能。在以前的版本中,一次只能针对单个连接执行一个批处理。使用 MARS 执行多个批次并不意味着同时执行操作。

要修复:

string connectionString = "Data Source=MSSQL1;" + 
"Initial Catalog=AdventureWorks;Integrated Security=SSPI;" +
"MultipleActiveResultSets=True";

我帮助访问了本地属性。例外情况:

foreach (var myTableObject in context.Table)
{
    // Exception
}

foreach (var myTableObject in context.Table.Local)
{
    // No exception
}