equals method
Get sql statement to check weather this field value equal to another (db field, some native value).
Implementation
ConditionQuery equals(dynamic other) {
return ConditionQuery(operatorString: '=', before: this, after: other);
}
Get sql statement to check weather this field value equal to another (db field, some native value).
ConditionQuery equals(dynamic other) {
return ConditionQuery(operatorString: '=', before: this, after: other);
}