Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two tables, movies and categories, and I get an ordered list by categoryID first and then by Name.

The movie table has three columns, ID, Name, and CategoryID. The category table two has columns, ID, and Name.

I tried something like the following, but it didn't work.

var movies = _db.Movies.OrderBy( m => { m.CategoryID, m.Name })
share|improve this question
6  
When you explain that something "doesn't work" it would help to explain the actual results you get and also what you expected. In other words an exception is a lot different then unexpected results or code that doesn't compile but all of these could be generally described as not working. – jpierson May 11 '10 at 7:52
Here is why this can't work: The lambda expression in the parentheses is supposed to return a value which can be used to order the items: m.CategoryID is a number which can be used to order the items. But "m.CategoryID, m.Name" doesn't make sense in this context. – chiccodoro Oct 22 '10 at 13:22
include System.Linq; :) – Mega Jan 20 '11 at 16:45

3 Answers

up vote 883 down vote accepted

This should work for you:

Var movies = _db.Movies.Orderby(c => c.Category).ThenBy(n => n.Name)
share|improve this answer
Thanks for the answer of course... But instead of Var movies = _db.Movies.Orderby(c => c.Category).ThenBy(n => n.Name) if I use Var movies = _db.Movies.Orderby(c => c.Category).OrderBy(n => n.Name) 2 times "orderBy" why is the result different? – user545425 Jan 20 '11 at 16:44
41  
@devendra, result is different because second "OrderBy" works over the collection which is result of first "OrderBy" and reorder its items – user569876 Jan 20 '11 at 16:45

Using non-lambda, query-syntax LINQ, you can do this:

var movies = from row in _db.Movies 
             orderby row.Category, row.Name
             select row;

[EDIT to address comment] To control the sort order, use the keywords ascending (which is the default and therefore not particularly useful) or descending, like so:

var movies = from row in _db.Movies 
             orderby row.Category descending, row.Name
             select row;
share|improve this answer
There's not a way to flip back and forth between descending and non in this syntax is there? – ehdv Jan 21 '11 at 18:32
Sure you can, updating my answer... – Scott Stafford Jan 21 '11 at 20:56
1  
Actually, your answer is the equivalent to _db.Movies.Orderby(c => c.Category).OrderBy(n => n.Name). More correct is from row in _db.Movies orderby row.Category descending orderby row.Name select row – Lodewijk Aug 31 '11 at 8:38
@Lodewijk: I believe you have that exactly backwards. Your example will end up having row.Name being the primary column and row.Category secondary, which is the equivalent of _db.Movies.Orderby(c => c.Category).OrderBy(n => n.Name). The two snippets you provide are equivalent to each other, not to the OP's. – Scott Stafford Oct 20 '11 at 17:59

Add "new":

var movies = _db.Movies.OrderBy( m => new { m.CategoryID, m.Name })

That works on my box. It does return something that can be used to sort. It returns an object with two values.

Similar, but different to sorting by a combined column, as follows.

var movies = _db.Movies.OrderBy( m => (m.CategoryID.ToString() + m.Name))

This should work.

share|improve this answer
+1 for the alternate ways. – guillegr123 Sep 4 '12 at 20:21
4  
Be careful when using that for numbers. – WoF_Angel Sep 6 '12 at 12:15
1  
Your answer is great, because it works in JSLINQ (where I dont have "ThenBy()"), but I have one more problem. How to use this when I want to have CategoryID descending and Name ascending? – Arvangen Dec 20 '12 at 14:16
1  
You can use OrderByDescending and ThenBy, or OrderBy and ThenByDescending, depending upon your need. – Ali Shah Ahmed Mar 21 at 8:08
1  
@Arvangen, a twisted way to do this would be to go with something like "OrderBy(m => new { - m.CategoryID, m.Name })". I haven't tested it out, but it should do what you want – Tipx Apr 15 at 19:30
show 1 more comment

protected by George Stocker Jun 30 '12 at 2:08

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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