LinqPad 的 lambda 窗口有什么用?
我可能很愚蠢,但运行代码后似乎从未在“lambda 窗口”中显示任何内容。谁能解释它应该如何工作?
I may be being stupid but never seem to get anything showing in the 'lambda window' after running code. Can anyone explain how it is supposed to work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用查询语法编写查询,则 lambda 窗口会将查询转换为方法语法。
尝试运行示例“LINQ to SQL 怎么样?”在示例选项卡的 LINQPad 5 分钟归纳* 文件夹中。 (归纳 = LINQPad 拼写错误,不是我的!)
您的代码窗口将如下所示:
lambda 窗口将如下所示:
If you write a query using query syntax, the lambda window will translate the query into method syntax.
Try running the sample "What about LINQ to SQL?" in the LINQPad 5 minute induction* folder in the samples tab. (induction = LINQPad typo, not mine!)
Your code window will look like this:
and the lambda window will look like this: