JoinedSelectStatement<FirstT extends HasResultSet, FirstD> constructor

JoinedSelectStatement<FirstT extends HasResultSet, FirstD>(
  1. DatabaseConnectionUser database,
  2. ResultSetImplementation<FirstT, FirstD> table,
  3. List<Join<HasResultSet, dynamic>> _joins, [
  4. bool distinct = false,
  5. bool _includeMainTableInResult = true,
  6. bool _includeJoinedTablesInResult = true,
])

Used internally by drift, users should use SimpleSelectStatement.join instead.

Implementation

JoinedSelectStatement(DatabaseConnectionUser database,
    ResultSetImplementation<FirstT, FirstD> table, this._joins,
    [this.distinct = false,
    this._includeMainTableInResult = true,
    this._includeJoinedTablesInResult = true])
    : super(database, table);