Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Question is How do a return a List of B with all the entities in children of all Parents without resorting to the type of code below, I was thinking u must be able to acheive the same within a single linq query?

Class Parent {
    public Title,
    public children List<B>,
}

data = List<A>

var childLists = from x in x.Parents select x.children;             
List<B> output = new List<B>();

foreach (List<B> b in childLists)
    output.AddRange(b);

Thanks.

share|improve this question

3 Answers

List<B> allChildren = x.Parents.SelctMany(p => p.children).ToList()
share|improve this answer
var output = x.Parents.SelectMany(p => p.children).ToList();
share|improve this answer

using nesting

from parent in x.Parents 
  from child in parent.Children 
  select child;
share|improve this answer
To be clear, i'd wrap the nested querys in parens. – RCIX Sep 15 '09 at 12:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.