Skip to content

Instantly share code, notes, and snippets.

@davecowart
Created January 27, 2012 16:18
Show Gist options
  • Save davecowart/1689572 to your computer and use it in GitHub Desktop.
Save davecowart/1689572 to your computer and use it in GitHub Desktop.
Crazy-ass date sorting
dates.OrderBy(date => date.Date).GroupBy(d => d.Date).Select(list => list.OrderByDescending(date => date.TimeOfDay)).SelectMany(x => x);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment