Query a List of List of Items in LINQ c#
- by call me Steve
I am a bit new to LINQ, here is my problem.
I have a List of List of Items
I like to get the Items which are present in
only one List (and if I could get the
List in which they are without
re-iterating through the "list of
list" that would be great).
I am trying without success to use the Aggregate / Except / Group keywords in the Linq query but nothing close to a solution so far.