I have to filter a list of objects.
The filter should be composed by users using logical OR / AND operators, and grouping using brackets.
say, something like this:

Say, we have object MyObj and its properties Prop1, Prop2, Prop3
Having myObjList the user could filter elements that Prop1 == aValue AND Prop2 < otherValue OR Prop2 > thirdvalue
Is there some known (reflection) mechanisms that permits to manage this kind of filtering operations?