EF 4.3 Code First:具有复合主键和外键的每类型表(TPT)

时间:2012-11-01 14:52:08

标签: c# ef-code-first entity-framework-4.3 composite-primary-key table-per-type

所以我正在尝试使用Code First和Fluent来映射具有一种派生类型的基类,其中表模式是Table-per-Type排列。此外,派生类型与具有复合外键的另一种类型具有多对一关系。 (这些表上的键是不可更改的,名称完全匹配。)

以下是我在CSharp中尝试实现的一个示例:

public class BaseType
{
    public int Id;
    public int TenantId;
    public int Name;
}

public class DerivedType : BaseType
{
    public int Active;
    public int OtherTypeId;
    public OtherType NavigationProperty; 
}

以下是配置类中的配置:

public BaseTypeConfiguration()
{
     ToTable("BaseTypes", "dbo");

     HasKey(f => new { f.Id, f.TenantId});

     Property(f => f.Id)
         .HasColumnName("BaseTypeId")
         .HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
}

public DerivedTypeConfiguration()
{
    ToTable("DerivedTypes", "dbo");

    //OtherType has many DerivedTypes
    HasRequired(dt=> dt.OtherTypeNavigation)
        .WithMany(ot=> ot.DerivedTypes)
        .HasForeignKey(dt=> new { dt.OtherTypeId, dt.TenantId});
}

据我所知,我的映射设置正确(例如,我遵循了许多具有这种确切情况但具有单列标识符的教程和示例)

当我尝试查询这些实体时,我得到的异常是: The foreign key component 'TenantId' is not a declared property on type 'DerivedType'.

当我尝试使用new关键字在类型上显式声明这些属性时,我得到一个异常,说明存在重复的属性。

答案 来自EF团队的回复

  

这是更基本的限制的一部分,其中EF不支持在基类型中定义属性,然后将其用作派生类型中的外键。不幸的是,这是一个很难从我们的代码库中删除的限制。鉴于我们没有看到很多请求,这不是我们计划在这个阶段解决的问题所以我们正在关闭这个问题。

2 个答案:

答案 0 :(得分:1)

我认为这就是你要找的东西:

[Table("BaseType")]
public class BaseType
{
    [Key, DatabaseGenerated(System.ComponentModel.DataAnnotations.Schema.DatabaseGeneratedOption.Identity)]
    public int Id {get;set;}
    [Key]
    public int TenantId { get; set; }
    public int Name { get; set; }
}

[Table("Derived1")]
public class DerivedType : BaseType
{
    public int Active { get; set; }
    public int OtherTypeId { get; set; }
    public virtual OtherType NavigationProperty {get;set;}
}

[ComplexType]
public class OtherType
{
    public string MyProperty { get; set; }

}


public class EFCodeFirstContext : DbContext
{
    public DbSet<BaseType> BaseTypes { get; set; }
    public DbSet<DerivedType> DerivedTypes { get; set; }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        modelBuilder.Entity<BaseType>().HasKey(p => new { p.Id, p.TenantId });
        base.OnModelCreating(modelBuilder);
    }
}

Code above results in:

答案 1 :(得分:0)

根据他们的支持,目前尚未得到支持。我在这里创建了一个类似堆栈问题的案例,并且用案例结果更新了作者。

https://stackoverflow.com/a/14880084/1791547