condition method

void condition(
  1. Operand leftOperand,
  2. ClauseOperator clauseOperator,
  3. Operand rightOperand
)

Adds a where condition to the where clause.

Implementation

void condition(
  Operand leftOperand,
  ClauseOperator clauseOperator,
  Operand rightOperand,
) {
  _whereClause.add(WhereCondition(leftOperand, clauseOperator, rightOperand));
}