Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个 NewBinaryExpressionList 但在这种情况下:
((A OR B) AND C)
我认为这是另一个中的 NewBinaryExpressionList,但它目前不适用于我。
这在我看来更像是一个简单的嵌套NewBinaryExpression,而不是一个列表:
NewBinaryExpression(NewBinaryExpression('A', dboOr, 'B'), dboAnd, 'C');