JSON.NET Error Self referencing loop detected for type

后端 未结 25 2826
我在风中等你
我在风中等你 2020-11-22 02:16

I tried to serialize POCO class that was automatically generated from Entity Data Model .edmx and when I used

JsonConvert.SerializeObject 

25条回答
  •  隐瞒了意图╮
    2020-11-22 02:45

    We can add these two lines into DbContext class constructor to disable Self referencing loop, like

    public TestContext()
            : base("name=TestContext")
    {
        this.Configuration.LazyLoadingEnabled = false;
        this.Configuration.ProxyCreationEnabled = false;
    }
    

提交回复
热议问题