OpenXML does not help to read large Excel files contrary to documentation
问题 The documentation says that: The following code segment is used to read a very large Excel file using the DOM approach. and then goes an example. I use it to implement reading a relatively large file with 700K rows. I have this code by now: using (SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Open(path, false)) { WorkbookPart workbookPart = spreadsheetDocument.WorkbookPart; WorksheetPart worksheetPart = workbookPart.WorksheetParts.First(); SheetData sheetData = worksheetPart