.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.
Linqpad dump more than 1000 rows
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()
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.
As a bonus, you can right-click anywhere in the data grid view to see Export options.
© 2022 - 2024 — McMap. All rights reserved.