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