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