Hello there :)
I am trying to bulk insert a custom object which has json property in postgresSQL.
It's working perfectly if the property is a fixed class. by using this method:
DapperPlusManager.AddCustomSupportedType
but once I tried to use dynamic object. it does not work. column value will be null
e.g
dynamic expando = new ExpandoObject();
Could you please help,
Thanks