clearJoins method
Clears all JOIN operations from the query.
Returns this
to enable method chaining.
Example:
query.clearJoins(); // Removes all JOIN clauses
Implementation
Sqler clearJoins() {
_joins = [];
return this;
}
Clears all JOIN operations from the query.
Returns this
to enable method chaining.
Example:
query.clearJoins(); // Removes all JOIN clauses
Sqler clearJoins() {
_joins = [];
return this;
}