In LINQ, is it possible to have conditional orderby sort order (ascending vs. descending).
Something like this (not valid code):
bool flag;
(from w in widgets
where w.Name.Contains("xyz")
orderby w.Id (flag ? ascending : descending)
select w)
|
|
|
If you build the expression incrementally you can do this. Generally easier using expressions rather than comprehension expressions:
(Assuming the Widget's |
|||
|
|
|
You can define a base query without the ordering, then order according to the flag:
|
|||
|
|
|
You could try something like the following:
|
|||
|
|
|
...Or do it all in one statement
|
|||
|
|