CompiledRelations class

Compiled result containing JOIN clauses and column selection.

Implemented types

Constructors

CompiledRelations({required String joinClauses, required Map<String, ColumnAlias> columnAliases, required List<IncludedRelation> includedRelations})
const

Properties

columnAliases Map<String, ColumnAlias>
Column aliases for SELECT (maps alias to original column).
final
hashCode int
The hash code for this object.
no setterinherited
includedRelations List<IncludedRelation>
Relations that were included, with their metadata.
final
isEmpty bool
no setter
isNotEmpty bool
no setter
joinClauses String
SQL JOIN clauses to append to the query.
final
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

Constants

empty → const CompiledRelations
Empty result (no relations).