var items =
  from c in customers
  where c.Country == Countries.Italy
    from o in c.Orders
    select new {o.Quantity, o.IdProduct};
