Skip to content

Instantly share code, notes, and snippets.

@dgg
Created August 30, 2013 07:49
Show Gist options
  • Save dgg/6387292 to your computer and use it in GitHub Desktop.
Save dgg/6387292 to your computer and use it in GitHub Desktop.
Model binding dynamic collections. III Server-side sort
public static IEnumerable<Thing> ToThings(SortableThing[] from)
{
return from
.Sort()
.Select(st => st.ToThing());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment