var orders =
  customers
  .Where(c => c.Country == Countries.Italy)
  .SelectMany(c => c.Orders);
