我有一个共享自定义“代码优先”DbContext对象的解决方案。
从今天开始尝试以这种方式访问实体之后的其中一个项目
using(var cx = new MyContext())
{
var data = cx.Persons;
}
我正在接受以下异常。
{"Method not found: 'System.Data.Entity.Core.Metadata.Edm.EdmModel System.Data.Entity.Infrastructure.DbModel.get_StoreModel()'."}
[System.MissingMethodException]: {"Method not found: 'System.Data.Entity.Core.Metadata.Edm.EdmModel System.Data.Entity.Infrastructure.DbModel.get_StoreModel()'."}
Data: {System.Collections.ListDictionaryInternal}
HelpLink: null
HResult: -2146233069
InnerException: null
Message: "Method not found: 'System.Data.Entity.Core.Metadata.Edm.EdmModel System.Data.Entity.Infrastructure.DbModel.get_StoreModel()'."
Source: "CodeFirstStoreFunctions"
StackTrace: " at CodeFirstStoreFunctions.FunctionsConvention.Apply(EntityContainer item, DbModel model)\r\n
atSystem.Data.Entity.ModelConfiguration.Configuration.ConventionsConfiguration.ModelConventionDispatcher.Dispatch[T](T item)\r\n
at System.Data.Entity.ModelConfiguration.Configuration.ConventionsConfiguration.ModelConventionDispatcher.VisitEdmEntityContainer(EntityContainer item)\r\n
at System.Data.Entity.Edm.EdmModelVisitor.VisitCollection[T](IEnumerable`1 collection, Action`1 visitMethod)\r\n at System.Data.Entity.Edm.EdmModelVisitor.VisitEntityContainers(IEnumerable`1 entityContainers)\r\n at System.Data.Entity.Edm.EdmModelVisitor.VisitEdmModel(EdmModel item)\r\n at System.Data.Entity.ModelConfiguration.Configuration.ConventionsConfiguration.ModelConventionDispatcher.VisitEdmModel(EdmModel item)\r\n
at System.Data.Entity.ModelConfiguration.Configuration.ConventionsConfiguration.ModelConventionDispatcher.Dispatch()\r\n at System.Data.Entity.ModelConfiguration.Configuration.Conven
tionsConfiguration.ApplyStoreModel(DbModel model)\r\n
at System.Data.Entity.DbModelBuilder.Build(DbProviderManifest providerManifest, DbProviderInfo providerInfo)\r\n at System.Data.Entity.DbModelBuilder.Build(DbConnection providerConnection)\r\n at System.Data.Entity.Internal.LazyInternalContext.CreateModel(LazyInternalContext internalContext)\r\n at System.Data.Entity.Internal.RetryLazy`2.GetValue(TInput input)\r\n at System.Data.Entity.Internal.LazyInternalContext.InitializeContext()\r\n at System.Data.Entity.Internal.InternalContext.Initialize()\r\n at System.Data.Entity.Internal.InternalContext.GetEntitySetAndBaseTypeForType(Type entityType)\r\n at System.Data.Entity.Internal.Linq.InternalSet`1.Initialize()\r\n at System.Data.Entity.Internal.Linq.InternalSet`1.GetEnumerator()\r\n at System.Data.Entity.Infrastructure.DbQuery`1.System.Collections.Generic.IEnumerable<TResult>.GetEnumerator()\r\n at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)\r\n at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)\r\n at ... }
这很奇怪,因为在其他项目中,自定义上下文工作正常。
我做了什么:
该消息是什么意思?
感谢任何帮助。
答案 0 :(得分:5)
就我而言,此错误是由混合实体框架包引起的。 “项目A”使用了实体框架的6.1.3版。 “项目B”是“项目A”的测试项目,使用的是6.0.0版本。
这导致了我的测试执行时上面显示的错误消息。
在两个项目中升级到6.1.3后,错误消失了。
答案 1 :(得分:0)
我遇到了同样的问题
PS:确保所有实体(项目-GAC文件)的entityframework.dll版本相同,并且应用程序配置中包含连接字符串