join method
Adds an INNER JOIN.
Implementation
ModelQuery<T> join(String table, String col1, String op, String col2) {
_builder.join(table, col1, op, col2);
return this;
}
Adds an INNER JOIN.
ModelQuery<T> join(String table, String col1, String op, String col2) {
_builder.join(table, col1, op, col2);
return this;
}