Upgrading from ASP.NET WebAPI Beta to RC has provided some amount of excitement and a great deal of frustration. I have been able to work through the majority of the issues, bu
The Json.NET formatter is case insensitive for deserialization (json -> CLR).
On serialization, you can get camel casing by using the CamelCasePropertyNamesContractResolver.
In your Global.asax:
var json = GlobalConfiguration.Configuration.Formatters.JsonFormatter;
json.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();