donnytian / Npoi.Mapper

Use this tool to import or export data with Excel file. The tool is a convention based mapper between strong typed object and Excel data via NPOI.
MIT License
589 stars 114 forks source link

Export Boolean properties to excel is not posible #133

Open efimkrasnov opened 9 months ago

efimkrasnov commented 9 months ago

I try to export simple entity with one Boolean property: Public bool Test { get;set;} But unfortunately I do not see this properly in Excel.

I did investigation and found that this properly is not taking in account because of CanBeExported extension method from Npoi.Mapper namespace.

Could you please help me to setup lib to work with Boolean properties?