如何使用 LINQPad 查看表达式树?
也许我错过了一些明显的东西,但我如何查看此查询的表达式树:
from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.Length
select word
使用 LINQPad?
Maybe I'm missing something obvious, but I how can I view the expression tree for this query:
from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.Length
select word
using LINQPad?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以按如下方式查看组成表达式树的对象:
You can view the objects that make up the expression tree as follows:
然后按结果旁边的 λ 按钮。
编辑:这会让您看到 lambda 表达式,但我似乎无法找到 表达式树可视化工具。据说 LINQPad 有(有?)一个,但我也没有找到。
Then press the λ button next to Results.
EDIT: This will let you see the lambda expression, but I can't seem to find the expression tree in the sense of the Expression Tree Visualizer. Allegedly LINQPad has (had?) one, but I'm not finding it either.
您还可以使用 LinqPAD 内所有对象上可用的
.Dump()
方法将表达式树转储到结果窗口中。You can also use the
.Dump()
method available on all objects inside LinqPAD to dump an expression tree into the results window.