I want to read first row of the excel work sheet using Open XML sdk with LINQ. Is there any way I could get it with out using following code:
WorkSheetPart.Worksheet.Descendants<Row>().FirstOrDefault();
The above code is taking long time (almost 1 minute) to retun the first row as the sheet contains morethan 75000 rows.