摘要: 使用Json.Net 序列化 时候 出现 "Self referencing loop detected for type "错误代码: 1 public class Product 2 { 3 public Product() 4 { 5 Items = new List<ProductItem>(); 6 } 7 8 public int ProductID { get; set; } 9 public string ProductName { get; set; }10 11... 阅读全文
posted @ 2012-04-24 14:50 Tony Day 阅读(659) 评论(0) 推荐(1)