I am looking for a nuget package which could help me to parse a string to a logical condition in C#. I have a configuration file in json, where users can configure the logic as follows.
"condition": "(item1 AND item2) OR item3",
This should be parsed and used in a if condition as follows.
if((item1 && item2) || item3){
}