也许我没有明显的东西,但我如何看待这一争 the的表达树:
from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.Length
select word
http://www.linqpad.net/“rel=“noreferer”
也许我没有明显的东西,但我如何看待这一争 the的表达树:
from word in "The quick brown fox jumps over the lazy dog".Split()
orderby word.Length
select word
http://www.linqpad.net/“rel=“noreferer”
你们可以认为构成表达树的物体如下:
(from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word).Expression
from word in "The quick brown fox jumps over the lazy dog".Split().AsQueryable()
orderby word.Length
select word
然后,将λ纽顿带至结果。
EDIT:这将让大家看到Mlambda的表述,但我似乎从ExpressionubeViewizer 。 据称,LINQPad有(had?),但Im没有发现。
您也可使用LinqPAD内所有物体的<代码>方法,将一个表达的树木丢入结果窗口。