I have some JSON returned inthe format of :
[{
"Strains":[{
"Description":"String content"
}],
"Description":"String content"
}]
Where there is a one to many relationship between the Description and the Strains. I want to parse this into a Dictionary<string, List<string>>, could somebody please advise what I should be looking at to achieve this?
Thanks.
EDIT:
I've tried deserializing as such:
JsonDeserializer des = new JsonDeserializer();
var foo = (List<Dictionary<string, object>>)des.DeserializeObject(json);
However, no joy. I'm just having a play with JSON.net, to see if there's anything there that helps.