I read from the DB a long json. I want just one attribute of that json.
I have got two options: a. Create an interface for that json and deserialize to that interface.
You can do:
var result = JsonConvert.DeserializeAnonymousType(json, new { Foo="", Bar=""});
This will return a dynamic object with the fields you defined.