Enetity Framework 加载关联数据后,循环问题
通过ef查询关联数据后,出现无限循环情况,在实体中将属性加上[Newtonsoft.Json.JsonIgnore] 、 [IgnoreDataMember] 就ok了。
我是查询后,用json转换,json不识别。
public class Category { public int Id { get; set; } public string Name { get; set; } [Newtonsoft.Json.JsonIgnore] [IgnoreDataMember] public virtual ICollection<Product> Products { get; set; } }