对我来说看起来很常见:我有两个表:文档:dID (pk, int), dName(varchar)
和 document_options:dID (int)、oType(int)、oValue(varchar)
我想要一个带有属性 Options 的类 Document(一个 DocumentOption 类的列表)
由于 document_options 没有 PK 我不能使用 HasMany,而且该表中的行看起来也不像“真实”实体......
我看到了一种为文档选项生成自动编号键并使用 HasMany 进行映射的方法,或者可能创建一个复合 ID,但我想知道是否有更好的选项我不知道。