基本上我想要实现的是我有三个表,一个父级将始终在其中有一个条目,并且只会填充另外两个表中的一个。我正在处理的复杂性是表的主键是两个字段的组合
ParentTable
-----------
UniqueID
OwnerID
[Some more fields]
ChildTable1
-----------
UniqueID
OwnerID
[Some more fields]
ChildTable2
-----------
UniqueID
OwnerID
[Some more fields]
我想知道是否有人对如何通过 EF Code First 最好使用 Fluent API 最好地做到这一点有任何建议。