var orders =
  from c in customers
  where c.Country == Countries.Italy
    from o in c.Orders
    select o;
