I have some problems working with model first many to many relationship. Since I created many-many relationship between Town
and Author
via interface builder it created table TownAuthor
with keys Towns_TownID
and Authors_AuthorID
but I want that just to be called TownID
and AuthorID
, how do I change that?
In Code first I would use that modelBuilder configuration in Context but I have no idea how to do this via model first...