operator | method
Join two sql condition statements with 'OR'
Implementation
ConditionQuery operator |(ConditionQuery other) =>
ConditionQuery(before: this, after: other, operatorString: 'OR');
Join two sql condition statements with 'OR'
ConditionQuery operator |(ConditionQuery other) =>
ConditionQuery(before: this, after: other, operatorString: 'OR');