如何使用 LINQPad 查看表达式树?

发布于 2024-08-10 02:43:42 字数 236 浏览 8 评论 0原文

也许我错过了一些明显的东西,但我如何查看此查询的表达式树:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

ヤ经典坏疍 2024-08-17 02:43:42

您可以按如下方式查看组成表达式树的对象:

(from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word).Expression

You can view the objects that make up the expression tree as follows:

(from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word).Expression
够运 2024-08-17 02:43:42
from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word

然后按结果旁边的 λ 按钮。

编辑:这会让您看到 lambda 表达式,但我似乎无法找到 表达式树可视化工具。据说 LINQPad 有(有?)一个,但我也没有找到。

from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word

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.

只是一片海 2024-08-17 02:43:42

您还可以使用 LinqPAD 内所有对象上可用的 .Dump() 方法将表达式树转储到结果窗口中。

You can also use the .Dump() method available on all objects inside LinqPAD to dump an expression tree into the results window.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文