The following doesn’t seem to be respecting the JsConfig scope settings when deserializing.
Am I missing something here?
TextCase
is only used for property text serialization, if you want to make the property deserialization more lax to support deserializing snake_case you’ll also need:
scope.PropertyConvention = PropertyConvention.Lenient;
1 Like