从针对SQL Server 2008数据库运行的C#程序中的SQL Server视图中选择字段的特定LINQ-to-SQL查询,该数据库在我的本地开发环境中运行良好,在暂存环境中运行时会产生异常:< / p>
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 ...]
导致此异常的原因是什么?
答案 0 :(得分:23)
这可能是由于LINQ查询试图选择目标数据库视图或表中实际不存在的字段引起的。
这种情况发生的一种方式(在我的情况下是问题)忽略了将最近创建的实体框架迁移部署到目标环境,该迁移将新字段添加到要查询的视图中。
另一个需要注意的是抛出的EntityCommandExecutionException的内部异常(如错误消息所示)。在这种情况下,内部异常的类型为SqlException,并且有一条有用的消息Invalid column name ‘[my column name]’
。
因此,在运行LINQ-to-SQL查询时,在EntityCommandDefinition.ExecuteStoreCommands中抛出EntityCommandExecutionException时需要注意的事项:
答案 1 :(得分:11)
这可能是由连接字符串中缺少"Multiple Active Result Sets"引起的。
多个活动结果集(MARS)是一种允许在单个连接上执行多个批处理的功能。在以前的版本中,一次只能对一个连接执行一个批处理。使用MARS执行多个批次并不意味着同时执行操作。
修复:
string connectionString = "Data Source=MSSQL1;" +
"Initial Catalog=AdventureWorks;Integrated Security=SSPI;" +
"MultipleActiveResultSets=True";
答案 2 :(得分:0)
我帮助访问了Local属性。例外:
foreach (var myTableObject in context.Table)
{
// Exception
}
foreach (var myTableObject in context.Table.Local)
{
// No exception
}