When I run an OData query with LinqPad, I sometimes need more than the standard 3 levels of nesting/expanding.
I found online that you can call Dump(int nestingLevel)
to get more levels of nesting.
But when I do that I get two result sets. (One with my expanded nesting, and one as it would be without the .Dump
call.)
Why is that? Is there a way I can turn that off?
As an example connect to https://data.stackexchange.com/stackoverflow/atom and run this query:
Posts.Take(1).Select(x=>new{x.Title}).Dump(1)
You will get two identical result sets. Like this: