I am using ExcelDataReader to read data from my Excel workbook in C#.
But structure of my Excel sheet is such that data to be read can start from any particular cell and not necessarily A1.
Can any one Please …
I'm using ExcelDataReader v.2.1. library to read both xls and xlsx files in my C# project. This way:
FileStream stream = File.Open(filePath, FileMode.Open, FileAccess.Read);
IExcelDataReader excelReader;
string extension = Path.GetExtension(filePath);
if (extension == ".xls")
{
excelReader = ExcelReaderFactory.CreateBinaryReader(…
I am using Excel Data Reader to read some data in to an Entity Framework Database
The code below is working but i need some further refinements
First of all IsFirstRowAsColumnNames does not seem to be working as intended and …