gpt4 book ai didi

c# - EF Core 2.0 中的一个实体 2 个表

转载 作者:太空狗 更新时间:2023-10-29 23:20:19 25 4
gpt4 key购买 nike

使用 EF Core 2.0 可以在 2 个表中映射一个实体吗?

EF6 中与此类似的东西(2 个配置相同,它们只是示例)。

    protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.ApplyConfiguration(delegate(EntityMappingConfiguration<Student> studentConfig)
{
studentConfig.Properties(p => new { p.Id, p.StudentName });
studentConfig.ToTable("StudentInfo");
});

Action<EntityMappingConfiguration<Student>> studentMapping = m =>
{
m.Properties(p => new { p.Id, p.Height, p.Weight, p.Photo, p.DateOfBirth });
m.ToTable("StudentInfoDetail");
};
modelBuilder.Entity<Student>().Map(studentMapping);

}

最佳答案

EF Core 2.0 添加了 Table SplittingOwned Types(EF6 Complex Types 替换),但您所要求的 - Entity Splitting 仍然不受支持。

有一个开放的功能请求 Relational: Entity splitting support #620在他们的 GitHib 存储库中,但我没有看到任何具体的计划/时间表是否以及何时最终实现。最有可能在他们添加 TPH 继承支持时,但这只是我的猜测。

关于c# - EF Core 2.0 中的一个实体 2 个表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45780404/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com