Can I specify a path in an attribute to map a property in my class to a child property in my JSON?
Well, if you just need a single extra property, one simple approach is to parse your JSON to a JObject, use ToObject() to populate your class from the JObject, and then use SelectToken() to pull in the extra property. So, assuming your class looked something like this: class Person { [JsonProperty(“name”)] public string Name { … Read more