var expr =
  from c in customers
    from o in c.Orders
    orderby o.Month
    select o;
