我想将实体类型的映射属性映射到数据库中的多个表(实体拆分),同时使用Mapping the Table-Per-Hierarchy (TPH) Inheritance,因此我的模型映射代码如下:
modelBuilder
.Entity<Person>()
.HasKey(n => n.PersonId)
.Map(map =>
{
map.Properties(p => new { p.Name });
map.ToTable("dbo.Person");
})
.Map<Customer>(map =>
{
map.Requires("PersonType").HasValue("C");
map.Properties(p => new { p.CustomerNumber });
map.ToTable("dbo.Customer");
});
基于以下底层数据库模式:
create table dbo.Person
(
PersonId int not null identity(1,1) primary key,
PersonType char(1) not null,
Name varchar(50) not null
)
create table dbo.Customer
(
PersonId int not null references dbo.Person (PersonId),
CustomerNumber varchar(10) not null
)
但是,当 EF 尝试执行我的查询时:
ctx.People.ToList();
抛出以下异常消息:
Invalid column name 'PersonType'.
运行 SQL 配置文件,它似乎试图在表上使用PersonType
具有值的字段上的谓词,而不是在我的鉴别器真正所在的表上使用谓词。C
dbo.Customer
dbo.Person
如果我使用一个或另一个功能,即仅继承或仅附加表映射,那么它可以工作,但是我放弃了我的一些要求。
我正在做的事情可以用 EF Fluent API 完成吗?
谢谢你的时间。