我使用nuget将EF5升级到EF6,并在某处为我的解决方案引入了重大变化。我在运行我的一个单元测试时发现了这个(虽然它影响了一切)。在每次测试中,我都是这样做的:
// warm up EF.
using (var context = new ReportingDbContext())
{
context.Database.Initialize(false); // <-- boom!
}
// init the service
_inventoryService = new InventoryService();
它抛出了我这个例外:
The property 'EmployeeID' cannot be configured as a navigation property. The property must be a valid entity type and the property should have a non-abstract getter and setter. For collection properties the type must implement ICollection<T> where T is a valid entity type.
奇怪的是,EF5上的一切都只是极好的。我去寻找我的模型(我有一堆),并发现EmployeeID生活的每个地方。他们都看起来像这样:
[Table("mytablename")]
public class CSATEntity
{
[Key, DatabaseGenerated(DatabaseGeneratedOption.None)]
public int CSATID { get; set; }
// foreign keys
public int ClientID { get; set; }
public int ContactID { get; set; }
// nav props
[ForeignKey("ClientID")]
public virtual CompanyEntity CompanyEntity { get; set; }
[ForeignKey("EmployeeID")]
public virtual EmployeeEntity EmployeeEntity { get; set; }
... more props
该例外不会记录哪个型号被顶起,或者所有型号都是。追捕这个的最好方法是什么?
答案 0 :(得分:0)
尝试从
更改命名空间 System.Data.Objects.ObjectContext to System.Data.Entity.Core.Objects.ObjectContext
System.Data.Objects to System.Data.Entity.Core.Objects
查看此MSDN页面http://msdn.microsoft.com/en-us/data/dn469466。它解释了如何升级到Entity Framework 6