how can I create a dynamic lambda expression to pass to use in my orderby function inside linq?
I basically want transform queryResults.OrderByDescending();
in queryResults.OrderByDescending(myCustomGeneratedLambdaExp);
where myCustomGeneratedLambdaExp
shall be a string containning x => x.name
.
Thanks
See Dynamic LINQ
Alternately, you can use a switch statement, Reflection or the
dynamic
type in C# 4 to return the value based on a supplied field name.This has also been done to death previously
I'm not sure where exactly did you need dynamic lambda expressions. Anyways, the best way to generate lambda expressions dynamically is by using expression trees. Here are two good tutorials on the subject:
This code generates a lambda expression like the one you asked for ("x => x.name"):
hope this helps