Entity Framework many to parent and child relationship

186 Views Asked by At

I have two entities A and B with the following relationship:

  • A has 0 or more B
  • B has 1 parent A
  • B has 1 child A

I don't know how to implement this relationship (navigation properties, Fluent API...)

1

There are 1 best solutions below

2
On

I'm a c# writer, but I thinck you get the picture ?

class A {
    public List<B> possibleBList {get;set;}
} 

class B {
    public A Parent {get;set;}
    public A Child {get;set;}
}