$scope vs. $rootScope in AngularJs

JSON.Net Self referencing loop detected


You can make the default behavior with the help of Json-Serializer-Settings and  add below code in Application_Start().

JsonConvert.DefaultSettings = () => new JsonSerializerSettings
{
    Formatting = Newtonsoft.Json.Formatting.Indented,
    ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
 };

Here is some limitations for the same as given below.

1.       Sometime  we  loses data by looping reference information.
2.       Fixes is only applies to JSON.net.
3.       If there is a deep reference chain that  we cannot be controlled to level of references.

Example code as given below.

namespace demo_example
{
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();

            GlobalConfiguration.Configure(WebApiConfig.Register);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);

            JsonConvert.DefaultSettings = () => new JsonSerializerSettings
            {
                Formatting = Newtonsoft.Json.Formatting.Indented,
                ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore
            };
        }
    }
}


For more detail, you can go links




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

JSON.Net Self referencing loop detected JSON.Net Self referencing loop detected Reviewed by Anil Singh on 9:25 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^