错误提示:
在EntityFramework中使用 ObjectContext.GetObjectByKey(entityKey); 时 出现错误:“未找到具有标识“{0}”的类型的对象映射”。
解决方法:
ObjectContext构造函数中:
ObjectContext.MetadataWorkspace.LoadFromAssembly(typeof(TContext).Assembly);
2012-04-06 Rainr
错误提示:
在EntityFramework中使用 ObjectContext.GetObjectByKey(entityKey); 时 出现错误:“未找到具有标识“{0}”的类型的对象映射”。
解决方法:
ObjectContext构造函数中:
ObjectContext.MetadataWorkspace.LoadFromAssembly(typeof(TContext).Assembly);
2012-04-06 Rainr