使用C#Entity Framework Codefirst和Fluent Api,TPC继承存在一个奇怪的问题。
我有3个名为Person
,Invoice
和PeriodicInvoice
的类,如下所示。
这是我的代码摘要:Invoice
类及其配置类:
public class Invoice : InvoiceBase
{
public Person User { get; set; }
}
public class InvoiceConfig : EntityTypeConfiguration<Invoice>
{
public InvoiceConfig()
{
this.Map(m => { m.MapInheritedProperties(); m.ToTable("Invoices"); });
}
}
PeriodicInvoice
类及其配置:public class PeriodicInvoice : InvoiceBase
{
// Some extra properties.
}
public class PeriodicInvoiceConfig : EntityTypeConfiguration<PeriodicInvoice>
{
public PeriodicInvoiceConfig()
{
this.Property(x => x.SuspendOnExpire).IsRequired();
this.Map(m => { m.MapInheritedProperties(); m.toTable("PeriodicInvoices"); });
}
}
当我运行代码时,出现此错误:
我知道这意味着我应该在
User
类中包括属性PeriodicInvoice
,并且不要在Invoice
类中使用它。但是,没有其他方法可以解决这个问题吗?
谢谢。
最佳答案
在TPC继承中,父类中不能有指向另一个表的字段,因为您试图将两个表指向另一个表,并且一个表试图仅使用一个外键指向这两个表之一(这就是不可能的!)。
我建议您使用TPT。 This link可以为您提供帮助。