join method

ModelQuery<T> join(
  1. String table,
  2. String col1,
  3. String op,
  4. String col2,
)

Adds an INNER JOIN.

Implementation

ModelQuery<T> join(String table, String col1, String op, String col2) {
  _builder.join(table, col1, op, col2);
  return this;
}