我有关于实体框架模型关系的设计问题
我在 edmx 中有这个模型
业务规则:
AParticipant
可以有多个Roles
,因此我创建了一个关系表,该表在 和表ParticipantRoles
上具有一对多关系Participant
Role
问题:为了获得参与者的角色值,我必须深入研究Participant->ParticipantRole->Role
(请参阅下面的 JSON 输出)
问题:
在EF中,如何设计表关系绕过ParticipantsRole表。我想以这样的方式访问角色,Particant.Role
而不是Participant.ParticipantsRole.Role