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>?
|
|
||||
|
|
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
Edit: it gets more fun if you want to mix that with
|
|||||||||||||||||||||
|
|
I found the answer. I can use the |
||||
|
|
|
Just stumbled across this question. Using Marc's ApplyOrder implementation from above, I slapped together an Extension method that handles SQL-like strings like:
Details can be found here: http://aonnull.blogspot.com/2010/08/dynamic-sql-like-linq-orderby-extension.html |
|||
|
|
|
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. |
|||||||||||||||||
|
|
Too easy without any complication : 1- Add using System.Linq.Dynamic; at the top. 2- Use vehicles = vehicles.AsQueryable().OrderBy("Make ASC, Year DESC").ToList(); |
|||||||
|
|
|
Just building on what others have said. I found that the following works quite well.
|
|||
|
|
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'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 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(). |
||||
|
|
|
Here's something else I found interesting. If your source is a DataTable, you can use dynamic sorting without using Dynamic Linq
reference: http://msdn.microsoft.com/en-us/library/bb669083.aspx (Using DataSetExtensions) Here is one more way to do it by converting it to a DataView:
|
||||
|
|
|
An alternate solution uses the following class/interface. It's not truly dynamic, but it works.
|
|||
|
|
|
Thanks to Maarten (Query a collection using PropertyInfo object in LINQ) I got this solution:
In my case I was working on a "ColumnHeaderMouseClick" (WindowsForm) so just found the specific Column pressed and its correspondent PropertyInfo:
OR
(be sure to have your column Names matching the object Properties) Cheers |
||||
|
|
|
After a lot of searching this worked for me:
|
|||
|
|
|
Is this what you're thinking of?
Source: http://msdn.microsoft.com/en-us/library/bb534966.aspx |
|||
|
protected by Community♦ Jan 12 '12 at 12:57
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
