ColumnString class

A Column holding an String.

Inheritance

Constructors

ColumnString(String name, {int? varcharLength})
Creates a new Column, this is typically done in generated code only.

Properties

columnName String
Name of the Column.
no setterinherited
expression String
The String representation of the Expression. Note that the precedence of operators may not be what you think, so always use parentheses to make sure that that expressions are executed in the correct order.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type Type
Corresponding dart Type.
finalinherited
varcharLength int?
Maximum length for a varchar
finalinherited

Methods

equals(String? value) Expression
Creates an Expression checking if the value in the column equals the specified value.
ilike(String value) Expression
Creates an Expression checking if the value in the column is LIKE the specified value but ignoring case. See Postgresql docs for more info on the ILIKE operator.
like(String value) Expression
Creates an Expression checking if the value in the column is LIKE the specified value. See Postgresql docs for more info on the LIKE operator.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notEquals(String? value) Expression
Creates an Expression checking if the value in the column does not equal the specified value.
toString() String
A string representation of this object.
inherited

Operators

operator &(dynamic other) Expression
Database AND operator.
inherited
operator <(dynamic other) Expression
Database less than operator.
inherited
operator <=(dynamic other) Expression
Database less or equal than operator.
inherited
operator ==(Object other) bool
The equality operator.
inherited
operator >(dynamic other) Expression
Database greater than operator.
inherited
operator >=(dynamic other) Expression
Database greater or equal than operator.
inherited
operator |(dynamic other) Expression
Database OR operator.
inherited