addJoin method

Find addJoin(
  1. JoinedTable join
)

Adds a 'join' clause to the select statement

Implementation

Find addJoin(JoinedTable join) {
  if (join == null) throw Exception('Join cannot be null!');

  _curJoin = join;
  _joins.add(_curJoin);
  return this;
}