vote up 9 vote down star

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 })
flag

64% accept rate

3 Answers

vote up 27 vote down check

This should work for you:

Var movies = _db.Movies.Orderby(c => c.Category).ThenBy(n => n.Name)
link|flag
LOL :), thanks alot – msony Nov 18 '08 at 13:50
vote up 2 vote down

include System.Linq; :)

link|flag
vote up -1 vote down

Will the same work on the List object? I am getting an error Error 1 'System.Collections.Generic.IEnumerable' does not contain a definition for 'ToList' and the best extension method overload 'System.Linq.Enumerable.ToList(System.Collections.Generic.IEnumerable)' has some invalid arguments

Please help.

Thanks, Kamesh

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.