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>?
|
feedback
|
protected by Community♦ Jan 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.
|
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
| |||||||||||||||
feedback
|
|
I found the answer. I can use the | ||||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||||||||||||
feedback
|
|
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. | |||||||
feedback
|
|
Just building on what others have said. I found that the following works quite well.
| |||
feedback
|
|
An alternate solution uses the following class/interface. It's not truly dynamic, but it works.
| |||
|
feedback
|
|
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:
| ||||
feedback
|
|
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(). | ||||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
See if this helps in any way | |||
|
feedback
|
I want to use && operator in where clause -Above condition get Unlimited time to run .I couldn't get proper result. | ||||
feedback
|
|
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(); | |||
|
feedback
|
|
Is this what you're thinking of?
Source: http://msdn.microsoft.com/en-us/library/bb534966.aspx | |||
|
feedback
|