vvenegasv / exportable

Exportable is a component for .NET, 100% open source, with MIT license; builded on top of NPOI. In the future, are plans to handle other formats, like CSV, Json, and others.
MIT License
9 stars 5 forks source link

Guide issue #2

Closed nesreeen closed 7 years ago

nesreeen commented 7 years ago

Thank you for this nice library . There is an issue with guide data type as it returns error "can't convert System.guide to string" to solve this issue we have to change ExcelExportEngine line 255 to use convert.ToString(propValue) instead of direct string casting (string) var cellValue = Convert.ToString(propValue); (this will solve guide casting issue ) instead of var cellValue = (string)propValue; (this will return error with guide)

Regards,

vvenegasv commented 7 years ago

Thank you for your feed back. Would you like to create a pull request with this fix?

You could use the develop branch to get the latest version and merge to it. Besides, you could get help from this link

Best Regards

vvenegasv commented 7 years ago

This bug was fixed on 1.3.7.18658 release. See this link for more information