excel-mapper icon indicating copy to clipboard operation
excel-mapper copied to clipboard

Fluently map excel rows to C# objects

Results 17 excel-mapper issues
Sort by recently updated
recently updated
newest added

Classes such as ColumnNameReader and ColumnNameMatchingValueReader compute column indexes for every row. This is not necessary and degrades performance, as indexes do not depend on the row index. The API...

IExcelDataReader supports reading values with the desired type. This can improve performance for boolean, numeric and date cells. A numeric cell in Excel is stored as a number, and can...

When reading an xlsx file, with cell values as "" _(empty)_, SkipBlankLines fails skip the line ([because it checks for null](https://app.codecov.io/gh/hughbe/excel-mapper/compare/51/diff?src=pr&el=tree#diff-c3JjL0V4Y2VsU2hlZXQuY3M=)). Shouldn't an empty cell be treated the same way...

My site gets the file uploaded to the controller. Is it possible to use this lib to read data from the file in memory or do I need to write...

I'm trying to map a dictionary list to a column in a class and for the most part its working but the WithInvalidFallBack functionality doesn't seem to be working correctly....

Is there an attribute that can be assigned to a class property that will default to a specified value if an excel cell being imported is blank or null? I...

Hi, I would like to read excel particular one cell value example 3rd row 4th column or cell value (D3). Is there any way in excel-mapper. ![image](https://user-images.githubusercontent.com/10336787/119257780-e2a8ad00-bbd7-11eb-918d-41ee0be4dbdc.png)

I have a class with a list of class, so how do I map for instance 3 columns into a object to add to the list?

i want to get a string LIst from a one colounn Sheet, but readRows not support string type how can i do? ![image](https://user-images.githubusercontent.com/65953767/194984478-402ef99f-c7f0-41b5-a5eb-2e8828399d42.png) ![image](https://user-images.githubusercontent.com/65953767/194984429-86f4ad05-25f1-4b48-b8b1-cf1d42bf892f.png)

Hi there. I have been debugging an issue with some excel sheet throwing an error when enumerating its rows. The error message says: Sheet "Sheet1" has no heading. However, the...