I found an example in the VS2008 Examples for Dynamic LINQ that allows you to use a sql-like string (e.g. OrderBy("Name, Age DESC")) for ordering. Unfortunately, the method included only works on IQueryable<T>. Is there any way to get this functionality on IEnumerable<T>?
|
18
|
|
|
|
|
|
Just stumbled into this oldie... To do this without the dynamic LINQ library, you just need the code as below. This covers most common scenarios including nested properties. To get it working with
|
||||||||||
|
|
|
I was trying to do this but having problems with Kjetil Watnedal's solution because I don't use the inline linq syntax - I prefer method-style syntax. My specific problem was in trying to do dynamic sorting using a custom IComparer. My solution ended up like this: Given an IQueryable query like so:
And given a run-time sort field argument:
The dynamic OrderBy looks like so:
And that's using a little helper method called GetReflectedPropertyValue():
One last thing - I mentioned that I wanted the OrderBy to use custom IComparer - because I wanted to do Natural sorting. To do that, I just alter the OrderBy to:
See this post for the code for NaturalSortComparer(). |
|||
|
|
|
|
|
|||
|
|
|
Just building on what others have said. I found that the following works quite well.
|
||
|
|
|
An alternate solution uses the following class/interface. It's not truly dynamic, but it works.
|
||
|
|
|
|
I've stumble this question looking for Linq multiple orderby clauses and maybe this was what the author was looking for Here's how to do that:
|
|||
|
|
|
|
I found the answer. I can use the .AsQueryable<>() extension method to convert my list to IQueryable, then run the dynamic order by against it. |
||
|
|
|
|
You could add it:
The The issue would be why? Any such sort would throw exceptions at run-time, rather than compile time (like D2VIANT's answer). If you're dealing with Linq to Sql and the orderby is an expression tree it will be converted into SQL for execution anyway. |
||||||
|
|
|
I guess it would work to use reflection to get whatever property you want to sort on:
Note that using reflection is considerably slower than accessing the property directly, so the performance would have to be investigated. |
||||
|
|
|
Is this what you're thinking of?
Source: http://msdn.microsoft.com/en-us/library/bb534966.aspx |
||
|
|
