join method

JoinedSelectStatement<HasResultSet, dynamic> join(
  1. List<Join<HasResultSet, dynamic>> joins
)

Adds more joined tables to this JoinedSelectStatement.

Always returns the same instance.

See also:

Implementation

// ignore: avoid_returning_this
JoinedSelectStatement join(List<Join> joins) {
  _joins.addAll(joins);
  return this;
}