Suppose I have linq expression q, then I want to add a sort to this query:
q = q.OrderBy(p => p.Total);
but for sort, there is desc/asc option for SQL, how to add it in above linq expression?
|
Suppose I have linq expression q, then I want to add a sort to this query:
but for sort, there is desc/asc option for SQL, how to add it in above linq expression?
| ||||
|
feedback
|
|
And if you want to order by multiple columns, use the
| |||
|
feedback
|
|
There's another method for that, A bit of an overkill, probably, but if you really want to be able to pass a parameter indicating sort order, you could create an extension method:
That way you'd be able to do
| |||
|
feedback
|