My .NET POCOs are in ProperCase
. My json is in camelCase
. How can I configure version 3.0 of the .NET SDK to convert when serializing/deserializing to/from Cosmos DB?
I know I can add the attribute [JsonProperty(PropertyName = "myProperty")]
to each property but how can I tell the SDK to do this for all properties by default?
I'm trying to get away from adding an attribute for this to every property.