join method
Adds more joined tables to this JoinedSelectStatement.
Always returns the same instance.
See also:
- https://drift.simonbinder.eu/docs/advanced-features/joins/#joins
- SimpleSelectStatement.join, which is used for the first join
- innerJoin, leftOuterJoin and crossJoin, which can be used to construct a Join.
- DatabaseConnectionUser.alias, which can be used to build statements that refer to the same table multiple times.
Implementation
// ignore: avoid_returning_this
JoinedSelectStatement join(List<Join> joins) {
_joins.addAll(joins);
return this;
}