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
601 stars 115 forks source link

Support for System.Guid .NET property type #55

Closed bkwdesign closed 4 years ago

bkwdesign commented 4 years ago

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; }
    }
donnytian commented 4 years ago

fixed in v3.5