var orders =
  customers
  .SelectMany(c => c.Orders)
  .OrderBy(o => o.Month, new MonthComparer());
