LeftJoin method

JoinTable LeftJoin(
  1. Queryable t,
  2. Expr on
)

Implementation

JoinTable LeftJoin(Queryable t, Expr on) {
  return new JoinTable._(this, JoinType.left, t, on);
}