I am using the LinqToExcel library . So far, it works fine, except that I need to run the query on a specific line. This is because the excel spreadsheet from the client uses some images and “header” information at the top of the excel file before the actual start of the data.
The data itself will be easy to read and fairly general, I just need to know how to tell ExcelQueryFactory to start from a specific line.
I am aware of the WorksheetRange<Company>("B3", "G10") parameter WorksheetRange<Company>("B3", "G10") , but I do not want to specify the ending line, only where to start reading the file.
Using the latest version of LinqToExcel with C #
source share