标签: c# entity-framework relationship ef-fluent-api
我有两个具有以下关系的实体A和B:
我不知道如何实现这种关系(导航属性,Fluent API ......)
答案 0 :(得分:0)
我是一名c#作家,但我认为你得到了这张照片?
class A { public List<B> possibleBList {get;set;} } class B { public A Parent {get;set;} public A Child {get;set;} }