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 givendataSource
. -
innerJoin(
DataSourceInterface dataSource) → JoinOnInterface -
Creates an
INNER JOIN
with the givendataSource
. -
join(
DataSourceInterface dataSource) → JoinOnInterface -
Creates a
JOIN
with the givendataSource
. [...] -
leftJoin(
DataSourceInterface dataSource) → JoinOnInterface -
Creates a
LEFT JOIN
with the givendataSource
. [...] -
leftOuterJoin(
DataSourceInterface dataSource) → JoinOnInterface -
Creates a
LEFT OUTER JOIN
with the givendataSource
.