I need to model a Many to many relation in EF. The answer I usually come across requires both entities to have each others reference.
Here is my case.
I have a Role entity, which can have multiple permissions("Permission entity). Role will have a list called permissions. On the other hand one permission can belong to multiple roles but it does not have a reference property for role.
How can I model it?
Also, can I cascade a new permission with Role?