Anonymous type values in grid view
I would like to create a csv file and used an ArrayList of anonymous types to get the best results.
Dumping the results works fine in the Rich Text view but when I switch to grid view (to see past a 1000 results) then I see one column named "Value" and each row in an "Anonymous" link to the real values. What happened to the real data that shows fine in the Rich Text view?
Dumping the results works fine in the Rich Text view but when I switch to grid view (to see past a 1000 results) then I see one column named "Value" and each row in an "Anonymous" link to the real values. What happened to the real data that shows fine in the Rich Text view?
Comments
You can set the max number of lines in edit->preferences.
And I've noticed that the resolving of anonymous types in grid view stops somewhere above 540000 lines.
I know that it would be much better to generate this right into csv but I was too lazy to look up the right method. Now it seems I'll really have to resort to the proper solution.
Util.WriteCsv (myData, @"c:\temp\foo.csv");
Thanks!
I of course realise that it was probably not meant for this...