TPC继承错误

时间:2015-07-09 10:45:53

标签: c# entity-framework ef-code-first ef-fluent-api

使用C#Entity Framework Codefirst和Fluent Api,TPC继承存在一个奇怪的问题。 我有3个名为PersonInvoicePeriodicInvoice的类,如下所示。 以下是我的代码摘要:

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"); });
    }
}

运行代码时,会出现此错误:

  

实体类型'Invoice'和'Person'之间的关联'Invoice_User'无效。在TPC层次结构中,仅允许在大多数派生类型上使用独立关联。

我知道这意味着我应该将属性User包含在课程PeriodicInvoice中,而不要在课程Invoice中使用它。

但是,有没有其他方法可以解决这个问题? 感谢。

1 个答案:

答案 0 :(得分:6)

在TPC继承中,您不能在父类中指向另一个表的字段,因为您试图将两个表指向另一个表,并且一个表尝试仅使用一个外键指向这两个表中的一个表(那是不可能的!)。

我建议你使用TPT。 This link可以帮助您。