operator | method

ConditionQuery operator |(
  1. ConditionQuery other
)

Join two sql condition statements with 'OR'

Implementation

ConditionQuery operator |(ConditionQuery other) =>
    ConditionQuery(before: this, after: other, operatorString: 'OR');