0

I am trying to build a NewBinaryExpressionList but with this condition:

((A OR B) AND C)

I think this is a NewBinaryExpressionList within another, but it's not currently working for me.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Jp191290
  • 51
  • 8

1 Answers1

0

This looks to me more like a simple nested NewBinaryExpression, rather than a list:

NewBinaryExpression(NewBinaryExpression('A', dboOr, 'B'), dboAnd, 'C');
Deltics
  • 22,162
  • 2
  • 42
  • 70