SelectStatement class

A type that represents an SQL Select statement.

Constructors

SelectStatement(String from, List<SelectedColumn> select, {required WhereClauseGroup where, List<OrderByElement> orderBy = const [], List<Join> joins = const []})
Creates a new select statement.
const

Properties

from String
The table to select from.
final
hashCode int
The hash code for this object.
no setteroverride
joins List<Join>
The joins in the statement.
final
orderBy List<OrderByElement>
The order by clause of the statement.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
select List<SelectedColumn>
The selected columns of the statement.
final
where WhereClauseGroup
The where clause of the statement.
final

Methods

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

Operators

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