I've already searched the archives but can't find a solution that works for linq to sql.

How do you create a custom orderby in linq to sql so that it generates SQL code like this

ORDER BY
CASE SEASON
  WHEN 'WINTER' THEN 1
  WHEN 'SPRING' THEN 2
  WHEN 'SUMMER' THEN 3
  WHEN 'AUTUMN' THEN 4
END

Note that custom comparators dont seem to compile and OrderByWeight as seen in this tutorial (http://www.skindog.co.uk/2009/03/18/custom-sorting-order-in-linq-order-by-weighting/) doesn't seem to exist

Note

I want the ordering to happen on the sql server and not in c# as this will give me different results since I am partitioning my results.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Here is an approach using a lambda expression


MyTable
   .OrderBy (t => (t.Season == "Winter") ? 1 : (t.Season == "Spring") ? 2 : [...])
   .Select (
      t => new
{ MyColumn = t.MyColumn ... } )

link|improve this answer
+1, because I believe this will actually compile into a CASE. – Aaronaught Dec 27 '09 at 19:32
This compiles perfectly into a case. Thanks!!! – Theo Dec 28 '09 at 10:48
feedback

You must select your data first in an inner loop like you did, then select data from that result and sort normally on your custom column:

(off my head)

from s in
  (from x in y select new { Sort = x.z == 'WINTER' ? 1 : x.z == 'SPRING' ? 2 : [...], Data = x })
orderby s.Sort
select s.Data

Something like that

Hope this helps

link|improve this answer
You solution makes sense. Thanks. Its just that linq to sql doesn't seem to like playing with variable that aren't apart of the original datasource. Remember that I want the case done on the SQL server with fields that already exist there, Hence the Sort value doesn't quite work. But the logic makes sense. – Theo Dec 28 '09 at 10:50
feedback

Your Answer

 
or
required, but never shown

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