我在mysql中使用实体框架。假设我有以下实体: Country
State City
Car Building
一路热切地包括到 Cars
,我可以使用以下命令:
context.Countries.
Include(c => c.States.Select(s => s.Cities.Select(ci => ci.Cars))).ToList();
同样地,包括所有的方式到 Buildings
,我可以使用:
context.Countries.
Include(c => c.States.Select(s => s.Cities.Select(ci => ci.Buildings))).ToList();
它们都很好用。现在,我想把这两者结合起来,以便把两者都包括进来 Cars
以及 Buildings
,所以我做了以下工作:
context.Countries.
Include(c => c.States.Select(s => s.Cities.Select(ci => ci.Cars))).
Include(c => c.States.Select(s => s.Cities.Select(ci => ci.Buildings))).ToList();
但每当我使用上面的代码将两者结合在一起时,它就会抛出一个 EntityCommandExecutionException
内部异常中包含以下消息的异常:
{“字段列表”中的未知列“apply1.id”}
我花了两个小时试图找出查询出了什么问题,最后,我决定用SQLServer测试它,它没有任何问题。
总结一下我的问题:
你知道为什么mysql不支持这个吗?查询本身有什么问题吗?
mysql有什么解决方法/替代方法来实现这一点吗?
请注意,这只发生在第三级(第二级) Select
),例如,以下操作可以正常工作:
context.Countries.
Include(c => c.States.Select(s => s.Cities.Select(ci => ci.Cars))).
Include(c => c.States.Select(s => s.Laws.Select(l => l.PrivacyLaws))).ToList();
以下是相关情况下的完整例外详细信息:
System.Data.Entity.Core.EntityCommandExecutionException was unhandled
HResult=-2146232004
Message=An error occurred while executing the command definition. See the inner exception for details.
Source=EntityFramework
StackTrace:
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.ObjectQuery`1.<>c__DisplayClass7.<GetResults>b__6()
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.<GetResults>b__5()
at System.Data.Entity.Infrastructure.DefaultExecutionStrategy.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.<System.Collections.Generic.IEnumerable<T>.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 ConsoleApplication1.Program.Main(String[] args) in E:\Test\tmpEF\tmpEF\Program.cs:line 15
at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
ErrorCode=-2147467259
HResult=-2147467259
Message=Unknown column 'Apply1.Id' in 'field list'
Number=1054
Source=MySql.Data
StackTrace:
at MySql.Data.MySqlClient.MySqlStream.ReadPacket()
at MySql.Data.MySqlClient.NativeDriver.GetResult(Int32& affectedRow, Int64& insertedId)
at MySql.Data.MySqlClient.Driver.GetResult(Int32 statementId, Int32& affectedRows, Int64& insertedId)
at MySql.Data.MySqlClient.Driver.NextResult(Int32 statementId, Boolean force)
at MySql.Data.MySqlClient.MySqlDataReader.NextResult()
at MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(CommandBehavior behavior)
at MySql.Data.Entity.EFMySqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.<Reader>b__c(DbCommand t, DbCommandInterceptionContext`1 c)
at System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch[TTarget,TInterceptionContext,TResult](TTarget target, Func`3 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed)
at System.Data.Entity.Infrastructure.Interception.DbCommandDispatcher.Reader(DbCommand command, DbCommandInterceptionContext interceptionContext)
at System.Data.Entity.Internal.InterceptableDbCommand.ExecuteDbDataReader(CommandBehavior behavior)
at System.Data.Common.DbCommand.ExecuteReader(CommandBehavior behavior)
at System.Data.Entity.Core.EntityClient.Internal.EntityCommandDefinition.ExecuteStoreCommands(EntityCommand entityCommand, CommandBehavior behavior)
InnerException:
1条答案
按热度按时间gstyhher1#
正如@ivanstoev所指出的,这已经是一个报告中的bug了,但更好的问题是,为什么要调用一个产生笛卡尔生产的查询。从entityframework中包含多个数据集通常不是一个好主意。即
此查询将从中提取一个数据集,对于每1个建筑物,您就拥有所有可能的汽车,并包含城市信息。你在极大地浪费资源。相反,应该单独加载集合,这样可以避免错误。并以最小的开销加载相关实体。最佳情况下,您应该将其称为,这也可以作为一种变通方法:
您可以决定用include中的国家/地区加载say状态,但不应该堆积嵌套的多对多,因为它的数量可能会增加