Hi Team,
I have a situation where i am trying to export data from an excel containing 1million rows and 70 columns using Aspose.cells. I am facing issue while reading data from excel because it takes hell lot of time just to load excel into the workbook variable and sometime it even gave me “out of memory exception”. I have to pull all the data from excel but don’t want to pull at once.
I have also tried the LoadOptions class with memory setting as MemoryPreference, but that also didn’t help much.
var loadOpt = new Aspose.Cells.LoadOptions
{
MemorySetting = MemorySetting.MemoryPreference
};
Is there a way to read the excel data row by row using Aspose.cells without loading the whole workbook into in-memory?
WorkBook wb = new WorkBook() — This will try to load whole excel file into in-memory.
Thanks