Newtonsoft.Json转换强类型DataTable错误:Self referencing loop detected with type ......

前端之家收集整理的这篇文章主要介绍了Newtonsoft.Json转换强类型DataTable错误:Self referencing loop detected with type ......前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

问题,在使用Newtonsoft.Json对强类型的DataTable进行系列化时会出现循环引用错误


解决办法,不要直接系列化强类型的DataTable,改为

JsonConvert.SerializeObject(dt.DefaultView.ToTable());
系列化缺省视图转换出来的DataTable
原文链接:https://www.f2er.com/json/289730.html

猜你在找的Json相关文章