operator & method

ConditionQuery operator &(
  1. ConditionQuery other
)

Join two sql condition statements with 'AND'

Implementation

ConditionQuery operator &(ConditionQuery other) =>
    ConditionQuery(before: this, after: other, operatorString: 'AND');