I have a many-to-many association in EF Code-First (as explained in this question), and I want to use a one-to-many to the same entity as well. The problem is EF does not pr
If table B has foreign key to table A then class B has navigation property to A and A have navigation property to ICollection.
If table B has many to many relation with table A then class A must have ICollection and class B must have ICollection.
Try that, maybe this will clarify your request from the EF.