I have a JSON structure that I would like to manually parse to a POCO object using JSON.NET.
The JSON structure is a bunch of nested dictionaries... The root dictionary contains categories, the next level contains products within those categories and the last level contains versions of those products.
{
"category-1": {
"product-1": {
"product-version-1": {
"id":1,
...
}
}
},
"category-2": {
"product-2": {
"product-version-2": {
"id":2,
...
}
},
"product-3": {
"product-version-3": {
"id":3,
...
}
}
}
}
I would like to parse this structure, keeping in mind the keys of all the dictionaries are not known to me ahead of time.
This was the code that I had written (I was going to convert to LINQ once it worked...) - I expected this to work with a couple of nested loops but clearly JTokens and JObjects don't work the way I thought... Id is always null.
var productsJObject = JObject.Parse(result.Content.ReadAsStringAsync().Result);
foreach (var category in productsJObject)
{
foreach (var product in category.Value)
{
foreach (var version in product)
{
var poco = new Poco
{
Id = version.SelectToken("id").ToString()
};
}
}
}
So my question, how can I iterate over nested dictionaries using JSON.Net?