i have table movies and categories, i what get ordered list by categoryID first and then by Name
movie table has columns: ID, Name, CategoryID category table has: ID, Name
tried something like this but doesnt work:
var movies=_db.Movies.OrderBy(m=>{ m.CategoryID, m.Name })