I\'m getting an exception that the JSON request was too large to be deserialized.
It\'s coming from the JsonValueProviderFactory....
The MVC App currently
The above suggestions didn't work for me until I tried this:
// Global.asax.cs protected void Application_Start() { MiniProfiler.Settings.MaxJsonResponseSize = int.MaxValue; }