Join class Null safety Query Builder

Factory for creating JOIN clauses.

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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.