I\'m working on a ASP.NET WebApi (Release Candidate) project where I\'m consuming several DTOs that are marked with the [Serializable] attribute. These DTOs are outside of m
I found easy way to get rid of k__BackingField in the names.
This fragment should be somewhere in the Application_Start() in Global.asax.cs:
JsonSerializerSettings jSettings = new Newtonsoft.Json.JsonSerializerSettings();
GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings = jSettings;
Looks like the default setting takes care of it.