I've got an object of type A
which consists of a list of objects of type B
:
class A { list<B> Alist;}
class B { string C; string D;}
In my program I have a list of A
objects:
list<A> listOfA = computeAList();
and I would like to select all the C
strings in that list. The following statement I hoped would give me the result I wanted; it returns a list of lists containing the C
's:
var query = from objectA in listOfA
select objectA.Alist.FindAll(x => x.C.Length > 0).C;
Is there a way to get a single list of all the C
's instead?