leftJoin method
Adds a LEFT JOIN.
Implementation
ModelQuery<T> leftJoin(String table, String col1, String op, String col2) {
_builder.leftJoin(table, col1, op, col2);
return this;
}
Adds a LEFT JOIN.
ModelQuery<T> leftJoin(String table, String col1, String op, String col2) {
_builder.leftJoin(table, col1, op, col2);
return this;
}