我正在尝试映射看起来像的 JSON
"ids": {
"id": {
"@value":"6763754764235874140"
}
}
我想将它映射到几个看起来像的类
class Property
{
public Ids Ids { get; set; }
}
class Ids
{
public string Id { get; set; }
}
所以基本上我想ids/id/@value
将 JSON 文档Ids.Id
中的值填充到类架构中。通过浏览文档,我想我可以使用类似的东西
[JsonProperty(ItemConverterType=typeof(IdConverter))]
public string Id { get; set; }
并提供一个JsonConverter
名为IdConverter
. 但是,当我这样做时,我IdConverter.ReadJson
永远不会被调用。我究竟做错了什么?