I have been using JSON.net with CamelCasePropertyNamesContractResolver in an MVC project to return JSON. I have been using JSON.net 4.5 for a while and after updating it to version 9 the returning JSON format is different
example :
in 4.5 a property call ALResults
would return as aLResults
int 9 the same property will come out as alResults
I can add attributes to each class and force the JSON to the format I need but is there a better way to do this?