Home

Export Large Dataset to Excel

I have a query like this:

var query1 = (from memberprograms in MemberPrograms
select new
{
Insertdate=memberprograms.Insertdate
}).ToList().Dump();

, which dumps more rows than Linqpad can display, so when I export, I don't get all the rows.

Can I write the result of this query directly to an Excel file?

Comments

Sign In or Register to comment.