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.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for System.Guid .NET property type

bkwdesign opened this issue · comments

commented

I think having to create a custom mapper to parse System.Guid values from a spreadsheet is something the mapper should have built in

If this is not going to be supported, can an example be added to the README .. as I had a hard time making a custom mapper for doing this

.NET sample object:

    public class MySampleTupleObject
    {
        public string Id { get; set; }

        public System.Guid ProcessId { get; set; }
    }

fixed in v3.5