loctrice
loctrice

Reputation: 2543

Linqpad dump more than 1000 rows

.Dump() only shows 1k results. How do I get it to show more than that with html formatting? The Grid results options doesn't have the formatting I need.

Upvotes: 32

Views: 7860

Answers (3)

StriplingWarrior
StriplingWarrior

Reputation: 156459

If you click the ... in the header of the dumped table, there is an option to see all the results in a data grid view. This is the same view you'd get from selecting DataGrid mode as the other answers mention, but it only adds this one table as a new tab.

screenshot

As a bonus, you can right-click anywhere in the data grid view to see Export options.

screenshot

Upvotes: 0

Dieter Claessens
Dieter Claessens

Reputation: 129

I know this an old question but since I stumbled upon it. At the top clicking this symbol will also yield a grid of all results. enter image description here

Upvotes: 0

loctrice
loctrice

Reputation: 2543

Taken from this post at linqpad

In the GUI go to edit -> preferences -> results . At the bottom you will see "In Rich Text Mode" as well as "In DataGrid Mode". The rich text mode works on the .Dump() in the editor, or automating a .linq query using .Dump()

Upvotes: 42

Related Questions