JSON.NET Error Self referencing loop detected for type

后端 未结 25 2825
我在风中等你
我在风中等你 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:41

    Use this in WebApiConfig.cs class :

    var json = config.Formatters.JsonFormatter;
    json.SerializerSettings.PreserveReferencesHandling = Newtonsoft.Json.PreserveReferencesHandling.Objects;
    config.Formatters.Remove(config.Formatters.XmlFormatter);
    

提交回复
热议问题