标签: c# json asp.net-web-api json.net
我正在创建一个web api,从EF中推出原始实体。我是否可以关闭与其他表相关的集合的序列化,以减少发送的潜在数据?
答案 0 :(得分:3)
您可以将JsonIgnore属性添加到您不希望序列化的属性中。
JsonIgnore
[JsonIgnore] public IList<SomeObject> SomeCollection { get; set; }
点击此链接:Efficient JSON with Json.NET – Reducing Serialized JSON Size