Turning the JSON result into camelCase is easy when using ODataConventionModelBuilder
.
var builder = new ODataConventionModelBuilder();
builder.EnableLowerCamelCase();
But how is it done when using ODataModelBuilder
? I can't seem to find anything on the topic.
I suspect it has to be done per Property, a bit like this builder...Property(x => x.Foo)...
but can't find any relevant method.