Hello,
In my project I have 'Player'(PlayerID and data) table, 'Games' table (GameID, Name) and I made a many to many table 'PlayerGames' (PlayerID, GameID - I created the forign keys relations)
PlayerID and GameID are primary keys in their tables and the tuple (PlayerID,GameID) are primary key in 'PlayerGames' Table
I tried to map these tables in classes using the designer in visual studio.
But in the player class I don't have 'Games' property with a list of games. Instead, I'm having PlayerGames property of type EntitySet.
How can I do it?