How to disable the automatic "sum" (last row) when dumping the results of a query?
Hi,
I used linqpad to gather some data and whenever I dump the results out, the last entry in always a "total" or "sum" of the rows above. Is there any way to disable this feature?
Thanks
Denise
I used linqpad to gather some data and whenever I dump the results out, the last entry in always a "total" or "sum" of the rows above. Is there any way to disable this feature?
Thanks
Denise
Comments
Click on 'Custom' style sheet for HTML results and add the following css customization:
td.columntotal { display:none }
@JoeAlbahari - I tried the style sheet override in v8.5.5 (X64) but it didn't work.
I can specify a
noTotals
property on each Dump() but it'd be better if there was a way to turn off totals globally so I don't have to specifynoTotals
on every Dump().Try
tr.columntotal { display:none }