Hi, I have 3 classes
public class Item { ... } public class Order { public List Items ... } public class Customer { public List Orders ... }
Now, using LINQ I need to get all items that a customer bought. How can I?
I tried something like var items = from o in cust.Orders select o.Items; but result is IEnuberable> and I wanna just one IEnumerable.
I'm asking here to try to avoid coding 2 loops.