vote up 1 vote down star

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?

flag

2 Answers

vote up 1 vote down check

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
link|flag
vote up 1 vote down
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.

link|flag
Yep, that's where I'm coming up short. Thanks for the tip on the lambda, though--I couldn't get that working either. – GuyBehindtheGuy Nov 4 at 15:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.