I get from a external source a json with TONS of fields. I don't care about most of them, I just need "some" of them. (which are at different child-level).
So I don't need to have a "strong type" oject I guess. Tried with:
JavaScriptSerializer js = new JavaScriptSerializer();
var obj = jss.Deserialize(myJson);
but seems I can't doing it? How can I do it?
Using:
jss.Deserialize<dynamic>(objectText);
than I can't use LINQ to search the fields...