动态创建 lambda 表达式 +林克+按降序排列
如何创建动态 lambda 表达式以传递到 linq 内的 orderby 函数中使用?
我基本上想要在 queryResults.OrderByDescending(myCustomGenerateLambdaExp);
中转换 queryResults.OrderByDescending();
,其中 myCustomGenerateLambdaExp
应是包含 x 的字符串=> x.name。
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定您到底在哪里需要动态 lambda 表达式。无论如何,动态生成 lambda 表达式的最佳方法是使用表达式树。以下是关于该主题的两个很好的教程:
此代码生成一个类似于您要求的 lambda 表达式(“x => x.name”):
希望这会有所帮助
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
请参阅 动态 LINQ
或者,您可以使用 switch 语句、Reflection 或 C# 4 中的
dynamic
类型来根据提供的字段名称返回值。以前也已经这样做了
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