我有以下从外部方收到的 JSON 字符串。
{
"team":[
{
"v1":"",
"attributes":{
"eighty_min_score":"",
"home_or_away":"home",
"score":"22",
"team_id":"500"
}
},
{
"v1":"",
"attributes":{
"eighty_min_score":"",
"home_or_away":"away",
"score":"30",
"team_id":"600"
}
}
]
}
我的映射类:
public class Attributes
{
public string eighty_min_score { get; set; }
public string home_or_away { get; set; }
public string score { get; set; }
public string team_id { get; set; }
}
public class Team
{
public string v1 { get; set; }
public Attributes attributes { get; set; }
}
public class RootObject
{
public List<Team> team { get; set; }
}
问题是我不喜欢Attributes
类名和类中的字段attributes
名Team
。相反,我希望它被命名TeamScore
,并从字段名称中删除_
并给出正确的名称。
JsonConvert.DeserializeObject<RootObject>(jsonText);
我可以重命名Attributes
为TeamScore
,但是如果我更改字段名称(attributes
在Team
类中),它将无法正确反序列化并给我null
. 我该如何克服呢?