bborad
bborad
is there new version of that document? could you post an example here.
@Kirlac You can specify the CSV column name by newMap.Data.Names.Add("CSV Column Name") here's what I do ``` var map = MemberMap.CreateGeneric(typeof(MyClass), t.GetProperty(m.PropertyName)); map.Data.Names.Add(m.CsvColumnName); custCodeMap.MemberMaps.Add(map); ```
@JoshClose How does Reference mapping done in run time. What I have is ``` User { public int UserID { get; set; } public string FName{ get; set; } public...
@Kirlac That's what I did as well. I am planing to post my code as an example if I can complete it with CsvHelper (else have to roll back everything...
Thanks @Kirlac , it worked....
Hi @Kirlac Would mind quick look at my reference mapping issue - Mapping Multiple Navigation-Reference properties of same type #814 Thanks