我想将json对象反序列化为c#类,并拥有一个完全填充的默认对象,即使我的json缺少信息。我试过
- 带[DefaultValue]的注释
- 正在为类创建构造函数
- 使用设置对象反序列化
设置对象:
new JsonSerializerSettings {
DefaultValueHandling = DefaultValueHandling.Populate
NulValueHandling = NullValueHandling.Include
ObjectCreationHandling = ObjectCreationHandling.Replace
}
考虑这些c#类
public class Root{
public SpecialProperty name {get;set;}
public SpecialProperty surname {get;set;}
}
public class SpecialProperty {
string type {get;set;}
string value {get;set;}
}
考虑这个JSON
"Root" : {
"name" : {
"type" : "string",
"value": "MyFirstname"
}
}
如何将这个json反序列化为一个对象,并将可用数据序列化为新对象,而缺少的属性(在本例中,设置为string.empty
)?
最简单的解决方法是在构造函数中放入所需的默认值。
public class Root
{
public SpecialProperty Name { get; set; }
public SpecialProperty Surname { get; set; }
public Root()
{
this.Name = SpecialProperty.GetEmptyInstance();
this.Surname = SpecialProperty.GetEmptyInstance();
}
}
public class SpecialProperty
{
public string Name { get; set; }
public string Type { get; set; }
public static SpecialProperty GetEmptyInstance()
{
return new SpecialProperty
{
Name = string.Empty,
Type = string.Empty
};
}
}
一种解决方案可以是反序列化到对象X中,将默认值存储到对象Y中,然后使用类似AutoMapper的东西将非null值从X映射到Y。