Skip to content

Instantly share code, notes, and snippets.

@jonedmiston
Last active April 6, 2017 21:04
Show Gist options
  • Save jonedmiston/fbc23b6d21fd0cfd6be524b6216c182d to your computer and use it in GitHub Desktop.
Save jonedmiston/fbc23b6d21fd0cfd6be524b6216c182d to your computer and use it in GitHub Desktop.
Sort by Attribute Value
// note that the queryable must be ToList'ed
var sortedItems = qryGroupMembers.ToList().OrderBy(a => a.GetAttributeValue("Priortity").AsInteger())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment