vote up 0 vote down star

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?

flag

2 Answers

vote up 1 vote down check

check this post out

link|flag
And what about adding/removing games? I want it to be automatically. What I've done so far is creating Games Property in the Player class that obtains all the games using linq. But What if I want to add games to this player(note, not create new games, just a record in PlayerGames. – Yarin Miran Apr 10 at 13:25
vote up 1 vote down

You might also want to check out CodeSmith's PLINQO. It's not free, but it's a super-pimped version of Linq to Sql and it supports many-to-many relationships, among other things.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.