在 属性 名称中使用负号反序列化 Json

Deserialize Json with minus in property name

我有一个 JSON return 如下。

   {
    "id": 100,
    "name": "employer 100",
    "externalId": "100-100",
    "networkId": 1000,
    "address": {
        "street-address": "1230 Main Street",
        "locality": "Vancouver",
        "postal-code": "V6B 5N2",
        "region": "BC",
        "country-name": "CA"
    }
   }

所以我创建了class来反序列化上面的json。

    public class Employer
        {
            public int id { get; set; }
            public string name { get; set; }
            public string externalId { get; set; }
            public int networkId { get; set; }
            public Address address { get; set; }
        }
    public class Address
        {
            public string street_address { get; set; }
            public string locality { get; set; }
            public string postal_code { get; set; }
            public string region { get; set; }
            public string country_name { get; set; }
        }
var response = _client.Execute(req); 
return _jsonDeserializer.Deserialize <Employer> (response);

但我无法从 Json 字符串中获取 街道地址、邮政编码和国家名称 。我认为因为 Json 输出键包含“”-”(因此我得到空值)。

那么我该如何解决我的问题?

在您的属性上使用 DeserializeAs 属性:

[DeserializeAs(Name = "postal-code")]
public string postal_code { get; set; }

这允许您设置映射到 class 中的 属性 的 json 中的 属性,允许 属性给儿子取个不同的名字。

https://github.com/restsharp/RestSharp/wiki/Deserialization

如果您使用的是 JSON.net,请在您的属性上使用特性来指定它们应匹配的名称:

public class Employer
{
    public int id { get; set; }
    public string name { get; set; }
    public string externalId { get; set; }
    public int networkId { get; set; }
    public Address address { get; set; }
}
public class Address
{

    [JsonProperty("street-address")]
    public string street_address { get; set; }
    public string locality { get; set; }
    [JsonProperty("postal-code")]
    public string postal_code { get; set; }
    public string region { get; set; }
    [JsonProperty("country-name")]
    public string country_name { get; set; }
}