Skip to content

Instantly share code, notes, and snippets.

@usimsek
Created May 5, 2021 08:32
Show Gist options
  • Save usimsek/80d4d73fcae8e519f45108657e5cc6e3 to your computer and use it in GitHub Desktop.
Save usimsek/80d4d73fcae8e519f45108657e5cc6e3 to your computer and use it in GitHub Desktop.
Asp Net Core - View - Multiple “order by” in LINQ
var movies = _db.Movies.OrderBy(c => c.Category).ThenBy(n => n.Name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment