何时在 LINQ 中使用 lambda 表达式而不是Where子句
我一直在深入研究 LINQ,并且正在尝试解决这个 lambda 表达式业务。 我只是没有看到语法的一些细微差别的好处。 首先,在我看来,lambda 表达式主要只是使用Where 子句的一种不同方式。 那么为什么我不直接使用Where 子句呢? lambda 表达式效率更高吗?
这是否只是另一种语法上的补充,以吸引其他群体的程序员对 C# 感到更舒服? 我还没有接触过 lambda 表达式还有其他更好的用例吗?
I've been really digging into LINQ, and I'm trying to hash out this lambda expression business. I'm just not seeing the benefit of some of the nuances of the syntax. Primarily, it seems to me that a lambda expression is mostly just a different way of using a Where clause. Why wouldn't I just use a Where clause then? Is the lambda expression more efficient?
Is it just another syntactical addition to draw programmers from another group to feel more comfortable in C#? Are there other better use cases for lambda expressions that I just haven't exposed to yet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看一下这篇文章: LINQ 查询语法与方法语法
:
还有这个问题:LINQ:点表示法与查询表达式
Take a look at this article: LINQ Query Syntax versus Method Syntax
:
And also this question: LINQ: Dot Notation vs Query Expression
请阅读此内容。 您的 LINQ 查询将在运行时由编译器转换为 Lambda 表达式。
Read this. Your LINQ queries will get turned into Lambda expressions by the compiler at run time.
在内部,编译器会将查询语法转换为更明确的 lambda 语法。 这两种风格都没有固有的性能提升,并且大多数情况下生成的代码几乎与人们手动输入的代码相同。
主要区别在于,使用 lambda 语法,您可以链接任何运行并返回 IEnumerable的扩展方法。 使用查询语法,您只能使用该语言明确支持的特定扩展方法(因语言而异)。
真正使用或不使用查询语法实际上是个人喜好的问题。
Internally, the compiler will translate the query syntax into the more explicit lambda syntax. There is no inherent performance gain for either style and the generated code for most scenarios is almost identical to what people type out by hand.
The main difference is that with the lambda syntax you can chain in any extension method operating off and returning and
IEnumerable<T>
. With the query syntax, you are limited to the particular extension methods explicitly supported by the language (varies between language)Really using or not using the query syntax is really a matter of personal preference.
http://theburningmonk.com/2010/02/linq- lambda 表达式与查询表达式/
http://theburningmonk.com/2010/02/linq-lambda-expression-vs-query-expression/