var ordersSortedByCustomerAndEuroAmount =
  from c in customers
  from o in c.Orders
  orderby c.Name, o.EuroAmount descending
  select new { c.Name, o.IdOrder, o.EuroAmount };
