I'm trying to import datatable with 1000000 records into Excel using EPPlus library.
ExcelWorksheet ws = pck.Workbook.Worksheets.Add("Demo");
var recordCount = dt.Rows.Count;
ws.Cells["A5"].LoadFromDataTable(dt, true);
I'm getting Row Out of Range exception on ws.Cells["A5"].LoadFromDataTable(dt, true); line
It worked when I had 1000 records.
Is there row limit size when working with EPPlus?