ja używam Json.NET do serializacji klasy do JSON.
Mam taką klasę:
class Test1
{
[JsonProperty("id")]
public string ID { get; set; }
[JsonProperty("label")]
public string Label { get; set; }
[JsonProperty("url")]
public string URL { get; set; }
[JsonProperty("item")]
public List<Test2> Test2List { get; set; }
}
Chcę dodać JsonIgnore()
atrybut do Test2List
właściwości tylko wtedy, gdy Test2List
jest null
. Jeśli nie jest zerowy, to chcę dołączyć to do mojego JSona.