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 a list:

List<User> users = getUsers();

The User object has 2 properties I want to sort by:

IsActive
Name

Sort first sort by IsActive, and then sort by name.

So the Active Users will be on the top of the list, sorted by name. Then all the in-active users will be listed (sorted alphabetically).

Is this possible or do I have to break the list up and then merge them?

There are less than 100 items in this List, so performance isn't really an issue.

share|improve this question
Another possibility you might want to consider is doing GroupBy for IsActive, especially if you want to perform some logic for only active users. – NominSim Jan 15 at 16:27
Why the negative votes? It's a valid question in my opinion. – Audrius Jan 15 at 16:33
2  
@Audrius It is valid, but it is not properly researched. – NominSim Jan 15 at 16:37
possible duplicate of Sort Generic list on two or more values – Michael Damatov Jan 15 at 18:30

2 Answers

up vote 10 down vote accepted

Simply use OrderBy and ThenBy. Thanks to Tim Schmelter for his remark. If you use OrderBy, you will get the user with IsActive == false at the top of your list.

var users = getUsers().
    OrderByDescending(u => u.IsActive).
    ThenBy(u => u.Name).
    ToList();

Remember to add to your using directives:

using System.Linq;
share|improve this answer
2  
You need OrderByDescending instead. Otherwise OP will get inactive first ("the Active Users will be on the top of the list,..."). – Tim Schmelter Jan 15 at 16:28
@TimSchmelter Thanks for the comment, I've edited my post. – Eve Jan 15 at 16:34
Doesn't seem to work, is the 'ThenBy' sorting the entire list again? – user1361315 Jan 15 at 17:37
@user1361315 No, its exact purpose is to sort only the subgroups of the first ordering. Could you show us the code you're using? This example works fine. – Eve Jan 15 at 18:11
sorry, it was javascript that was re-sorting on the UI, it did work! – user1361315 Jan 16 at 15:08
var result = users.OrderByDescending(z => z.IsActive).ThenBy(z => z.Name);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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