addJoin method
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;
}
Adds a 'join' clause to the select statement
Find addJoin(JoinedTable join) {
if (join == null) throw Exception('Join cannot be null!');
_curJoin = join;
_joins.add(_curJoin);
return this;
}