I have LINQ expression like

var a = ctx.EntitySet
        .OrderByDescending(t => t.Property)
        .Skip(pageIndex * size) 
        .Take(size);

OrderBy() should call before Skip() and Take(), but sorting happens at the end. Can I solve this problem?

Sorry, many people didn't understand my question. Query runs without any errors, but I want

//It is I want
1) Sorting ALL data
2) Use Skip() and Take()

What I have in result if I do like at my example: 1) Skip() 2) Take() 3) Sorting only taked elements!

link|improve this question

29% accept rate
1  
This is the proper way of doing it, what is the actual problem? – cjk Sep 19 '11 at 8:33
Since the query looks fine, you might pass along the generated sql query since as-written it appears fine. weblogs.asp.net/scottgu/archive/2007/07/31/… – James Manning Sep 26 '11 at 5:19
Dont forget to mark answer as accepted if you got the info you want – Pranay Rana Sep 27 '11 at 9:50
the code example worked for me, it ordered the set first, then skipped the amount, and then took the correct amount. – Marcel Valdez Orozco Mar 5 at 7:56
feedback

2 Answers

I'm asuming you're working with Entity Framework and its throwing you exception asking you to put order by clause before Skip however it seems you want to do the ordering in the end.

Please note that this is the limitation of SQL Server that it requires you to order the records in some way before you're able to do skipping logic on it.

So if you want to do your custom ordering; you can still do it in end after your records are skipped.

For example:

ctx.EntitySet
        .OrderBy(t => t.ID)
        .Skip(pageIndex * size) 
        .OrderByDescending(t=>t.Property)
        .Take(size)
link|improve this answer
feedback

have you tried this

if you go for below solution it will first get the records and than does sorting on that records which may lead you to wrong result.

var a = ctx.EntitySet
        .Skip(pageIndex * size) 
        .Take(size);

a = a.OrderByDescending(t => t.Property);

or

Following way you first doing sorting and than getting records after that, so by this way you can get the result you want , this is proper way to do

   var a = ctx.EntitySet
    .OrderByDescending(t => t.Property)
    .Skip(pageIndex * size) 
    .Take(size);

But it always depends on your requirement what you want....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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