From the docs https://www.newtonsoft.com/json/help/html/SelectToken.htm
IEnumerable<JToken> price = o.SelectTokens("$..Products[?(@.Name == "AAA")].Price");
How could I re-write the above query where I have to find prices to match multiple product names from a list ["AAA", "BBB", "CCC"]