ChoETL
ChoETL copied to clipboard
NestedColumnSeparator deprecated?
Hello
I'm updating ChoETL.JSON.NETStandard and ChoETL.NETStandard packages to the last version 1.2.1.66 from 1.2.1.56.
The problem is that the property NestedColumnSeparator is not available on this last version. Is there any workaround for this?
yes, it is renamed to NestedKeySeparator
using (var r = ChoCSVReader.LoadText(csv)
.WithFirstLineHeader()
.Configure(c => c.NestedKeySeparator = '/'))
{
}