我从一个我无法控制的服务中得到类似的Json:
"SomeKey":
{
"Name": "Some name",
"Type": "Some type"
},
"SomeOtherKey":
{
"Name": "Some other name",
"Type": "Some type"
}
我试图通过使用NewtonSoft Json.Net将该字符串反序列化为.Net类,因为我的类现在看起来像这样:
public class MyRootClass
{
public Dictionary<String, MyChildClass> Devices { get; set; }
}
public class MyChildClass
{
[JsonProperty("Name")]
public String Name { get; set; }
[JsonProperty("Type")]
public String Type { get; set; }
}
我会更喜欢我的班级的扁平版本,没有这样的字典:
public class MyRootClass
{
[JsonProperty("InsertMiracleCodeHere")]
public String Key { get; set; }
[JsonProperty("Name")]
public String Name { get; set; }
[JsonProperty("Type")]
public String Type { get; set; }
}
但我对如何实现这一点没有任何线索,因为我不知道如何访问这样的customconverter中的键:
http://blog.maskalik.com/asp-net/json-net-implement-custom-serialization
如果有人关心,可以找到指向我获得的Json字符串的实际样本的页面的链接:Ninjablocks Rest API documentation with json samples
答案 0 :(得分:3)
我不知道是否有办法用JSON.NET做到这一点。也许你是在思考它。如何为反序列化JSON创建单独的DTO类型,然后将结果投影到更适合您的域的另一种类型。例如:
public class MyRootDTO
{
public Dictionary<String, MyChildDTO> Devices { get; set; }
}
public class MyChildDTO
{
[JsonProperty("Name")]
public String Name { get; set; }
[JsonProperty("Type")]
public String Type { get; set; }
}
public class MyRoot
{
public String Key { get; set; }
public String Name { get; set; }
public String Type { get; set; }
}
然后你可以按如下方式映射:
public IEnumerable<MyRoot> MapMyRootDTO(MyRootDTO root)
{
return root.Devices.Select(r => new MyRoot
{
Key = r.Key,
Name = r.Value.Name
Type = r.Value.Type
});
}