使用Model-first和Table-per-heirachy,我可以创建两个继承自同一基类的类,并将两个派生类中的每一个中的列映射到同一个表列,这样我就可以使用'columns。
如果我尝试使用Code-first,我会收到以下错误:“类型中的每个属性名称必须是唯一的。属性名称'XXX'已经定义。”
我认为这是代码优先的错误吗?
以下是一些示例代码:
public class Parent
{
public Guid Id { get; set; }
}
public class ChildA : Parent
{
public Int32 ChildAProperty { get; set; }
}
public class ChildB : Parent
{
public Int32 ChildBProperty { get; set; }
}
public class TestContext : DbContext
{
public DbSet<Parent> Entities { get { return this.Set<Parent>(); } }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
var childAConfig = modelBuilder.Entity<ChildA>();
childAConfig.Property(p => p.ChildAProperty).HasColumnName("Property");
var childBConfig = modelBuilder.Entity<ChildB>();
childBConfig.Property(p => p.ChildBProperty).HasColumnName("Property");
}
}