Join class Query Builder

Factory for creating JOIN clauses.

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

crossJoin(DataSourceInterface dataSource) JoinInterface
Creates an CROSS JOIN with the given dataSource.
innerJoin(DataSourceInterface dataSource) JoinOnInterface
Creates an INNER JOIN with the given dataSource.
join(DataSourceInterface dataSource) JoinOnInterface
Creates a JOIN with the given dataSource.
leftJoin(DataSourceInterface dataSource) JoinOnInterface
Creates a LEFT JOIN with the given dataSource.
leftOuterJoin(DataSourceInterface dataSource) JoinOnInterface
Creates a LEFT OUTER JOIN with the given dataSource.