Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the easiest way to get a LINQ query (from an SQL database - does that matter?) to order strings naturally?

For example, I'm currently getting these results:

  • Project 1
  • Project 10
  • Project 2

What I'd like is to see is this:

  • Project 1
  • Project 2
  • Project 10

The query I'm using is this:

return from p in dataContext.Projects
    orderby p.Name
    select p;
share|improve this question
"Naturally" is subjective. Can you describe what you mean more specifically? – StingyJack Aug 24 '09 at 17:02
@StingyJack - In a human sort order, not a computer sort order. – Kieron Aug 24 '09 at 17:03
1  
HA - "Human" sort order. You mean latin dictionary order, case insensitive? Do you have an ID for these projects? – StingyJack Aug 24 '09 at 17:04

2 Answers

up vote 7 down vote accepted

There is no built-in way to do this using the .NET framework but I would suggest that you read Natural Sorting in C# for a discussion on the topic and an open-source implementation.

share|improve this answer
+1.awesome link. – Stan R. Aug 24 '09 at 17:04
Nice find, thanks. – Kieron Aug 24 '09 at 17:06

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.