Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #55.0K
~3K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Mike Askew
Member Avatar for pritaeas

Load on demand is what you are looking for. I suggest a reading of LINQ to SQL which supports these sorts of scenrios our of the box.

Member Avatar for pritaeas
0
231
Member Avatar for kukuruku

Hi, I cannot think of LINQ query to do this. I think the easiest way to do this would be to use a Dictionary, something along the lines of the following : Dictionary<int, List<string>> dict = new Dictionary<int, List<string>>(); Regards,

Member Avatar for tinstaafl
0
144

The End.