clearWhere method
Clears all WHERE conditions from the query.
Returns this
to enable method chaining.
Example:
query.clearWhere(); // Removes all WHERE conditions
Implementation
Sqler clearWhere() {
_where = [];
return this;
}
Clears all WHERE conditions from the query.
Returns this
to enable method chaining.
Example:
query.clearWhere(); // Removes all WHERE conditions
Sqler clearWhere() {
_where = [];
return this;
}