JoinBuilder class

A builder for creating Join clauses.

Available extensions

Constructors

JoinBuilder()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addJoin({required JoinType type, required String table, required WhereClauseGroup on}) → void
Adds a join clause to the builder.
build() List<Join>
Builds the list of joins.
fullJoin({required String table, required WhereClauseGroup on}) JoinBuilder

Available on JoinBuilder, provided by the JoinBuilderExtensions extension

Adds a FULL JOIN clause
innerJoin({required String table, required WhereClauseGroup on}) JoinBuilder

Available on JoinBuilder, provided by the JoinBuilderExtensions extension

Adds an INNER JOIN clause
leftJoin({required String table, required WhereClauseGroup on}) JoinBuilder

Available on JoinBuilder, provided by the JoinBuilderExtensions extension

Adds a LEFT JOIN clause
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
rightJoin({required String table, required WhereClauseGroup on}) JoinBuilder

Available on JoinBuilder, provided by the JoinBuilderExtensions extension

Adds a RIGHT JOIN clause
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited