dynamically create lambdas expressions + linq + Or

2020-04-17 05:40发布

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

2条回答
祖国的老花朵
2楼-- · 2020-04-17 06:14

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

查看更多
等我变得足够好
3楼-- · 2020-04-17 06:15

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

查看更多
登录 后发表回答