我的模型中有许多继承层次结构。我将 Entity Framework Core 3.1.2 与 Postgres 数据库一起使用。代码优先。我正在尝试创建迁移以生成我的数据库表。
我映射了我的第一个抽象对象
public DbSet<Asset> Assets { get; set; }
我了解到,如果不映射具体的后代,就无法映射抽象类。
The corresponding CLR type for entity type 'Asset' is not instantiable and there is no derived entity type in the model that corresponds to a concrete CLR type.
所以我映射后代。
public DbSet<LinearAsset> LinearAssets { get; set; }
public DbSet<StructureAsset> Structures { get; set; }
public DbSet<BridgeAsset> Bridges { get; set; }
public DbSet<RoadAsset> Roads { get; set; }
一切都很好。极好的。
然而。当我开始映射我的第二个继承层次结构(以及我尝试的任何其他继承层次结构)时,我陷入了这个奇怪的循环论证,我必须也不能映射孩子。
public DbSet<Attachment> Attachments { get; set; }
public DbSet<AssetAttachment> AssetAttachments { get; set; }
给我
The entity type 'AssetAttachment' cannot be mapped to a table because it is derived from 'Attachment'. Only base entity types can be mapped to a table.
如果我删除 AssetAttachments 的映射,我会回到这个
The corresponding CLR type for entity type 'Attachment' is not instantiable and there is no derived entity type in the model that corresponds to a concrete CLR type.
我无法在有效的资产继承层次结构和其他不起作用的继承层次结构之间找到任何有意义的区别。
我已经尝试了各种不同的映射方式,或者不映射后代对象,但它总是回到获得上述两个错误消息之一。我被期望映射而不是映射后代,这让我非常困惑 Dot Net 到底想从我这里得到什么。
有人能给我一些关于如何处理这两个相互冲突的错误消息的建议吗?