Assignment in Newtonsoft.Json's implementation of JsonPath
I have a JSON like this one: { "options": [ { "price": 217, "quantity": 2 }, { "price": 63, "quantity": 5 } ] } And I want to query it with JsonPath to get the product of "price" and "quantity"…