var items = customers
  .Where(c => c.Country == Countries.Italy)
  .SelectMany(c => c.Orders,
    (c, o) => new { o.Quantity, o.IdProduct });
