var ordersQuery =
  from c in customers
  from o in c.Orders
  where o.EuroAmount > 200
  select new { c.Name, o.IdOrder, o.EuroAmount };
