Json Newtonsoft忽略了任何可枚举的东西?

时间:2013-10-31 17:07:41

标签: c# json asp.net-web-api json.net

我正在创建一个web api,从EF中推出原始实体。我是否可以关闭与其他表相关的集合的序列化,以减少发送的潜在数据?

1 个答案:

答案 0 :(得分:3)

您可以将JsonIgnore属性添加到您不希望序列化的属性中。

  [JsonIgnore]
  public IList<SomeObject> SomeCollection { get; set; }

点击此链接:Efficient JSON with Json.NET – Reducing Serialized JSON Size