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
Re: C# in a Nutshell by Joseph/Ben Albahari. Hands down the best book on C# | |
Re: 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. | |
Re: 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, |
The End.