I have a huge IQueryable that I want to export directly to Excel for data dumps, how would I do this?
I was trying to put it into a GridView and export from there, which works if I use only a chunk of the data, but if I use the whole IQueryable, nothing happens.
This is a table with 4k rows and each row has 70 or so columns.
Edit: CSV file will be fine too if that is easier!