ATable.Dump() in linqpad returns the whole ATable.
However, ATable.Single().MassiveColumn contains too much data and it fills up the whole results page.
Is there a way to either:
-
Write this more concisely
ATable.Select(t=> new {col1 = t.column1, col2 = t.column2, ..., coln = t.columnn})and omitMassiveColumn. (The table has about 20 columns and I want to select everything exceptMassiveColumn) -
Hide
MassiveColumnfrom being dumped.
Or is there any other options to restrict the dump to only allow one line per row.
There’s an option to limit column widths in Edit | Preferences | Advanced (last option in list).
Would that help?