In straight SQL, I'd probably wrap some logic over a simple join, but how would I do this efficiently in LINQ to SQL? Imagine I have two tables:
Parent
- ID
Child
- ParentID
- ID
- Name
Ideally I'd like a graph of Parent objects with a "Childs" property that is actually a Dictionary<int, string>.
Suggestions?