vote up 1 vote down star

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

flag

You should accept more of your answers. A 40% accept rate makes it very hard for people to be motivated to answer your questions. – Aaron Bertrand Nov 24 at 15:56

2 Answers

vote up 2 vote down check

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"):

MemberInfo member = typeof(AClassWithANameProperty).GetProperty("Name");

//Create 'x' parameter expression
ParameterExpression xParameter = Expression.Parameter(typeof(object), "x");

//Create body expression
Expression body = Expression.MakeMemberAccess(targetParameter, member);

//Create and compile lambda
var lambda = Expression.Lambda<LateBoundGetMemberValue>(
    Expression.Convert(body, typeof(string)),
    targetParameter
);
return lambda.Compile();

hope this helps

link|flag
Thanks for the nice example! It helped me a lot! – Tiago Teixeira Nov 3 at 16:02
vote up 2 vote down

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

link|flag
Thanks a lot for your input! My point is to avoid switch code and reflection make it slower. – Tiago Teixeira Nov 3 at 16:02
Yes, makes sense. Good luck with it. Using dynamic and/or Iron* is more clean than Dynamic LINQ or reflection.emit or Expression.Compile though if you're trying to keep your code maintainable and Clean IMO. – Ruben Bartelink Nov 3 at 17:25
Thanks again for the great input. – Tiago Teixeira Nov 4 at 12:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.