2013-10-31 43 views

回答

3

您可以將JsonIgnore屬性添加到您不希望序列化的屬性。

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

檢查此鏈接:Efficient JSON with Json.NET – Reducing Serialized JSON Size

+0

我能做到這一切的集合,而不是標籤?我問,因爲我首先使用模型來生成實體,所以添加此屬性將通過編輯我的t4模板來完成。 – Tim

+0

沒關係我從鏈接中看到我可以使用ContractResolver進行此操作。謝謝! – Tim