JSON.Net Self referencing loop detected

前端之家收集整理的这篇文章主要介绍了JSON.Net Self referencing loop detected前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近在开发时对主表和子表建立了关系,然后查询使用了Linq to SQL查询出来的结果通过Json.net的JsonConvert.SerializeObject进行转化时会报错“JSON.Net Self referencing loop detected”,后来发现很多同学也遇到了此问题,最终网上找到了方法,对JsonConvert.SerializeObject进行配置就可以实现了

JsonConvert.SerializeObject(query,Formatting.None,new JsonSerializerSettings() { ReferenceLoopHandling = ReferenceLoopHandling.Ignore });

原文链接:https://www.f2er.com/json/289157.html

猜你在找的Json相关文章