leftJoin method

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

Adds a LEFT JOIN.

Implementation

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