BoolField class

BoolField is a convenience DSL used to construct queries in a concise and understandable way.

Inheritance

Constructors

BoolField(String name)

Properties

hashCode int
The hash code for this object.
no setterinherited
isNotNull Cond<bool>
Returns an "IS NOT" condition, i.e. 'where var IS NOT null'
no setterinherited
isNull Cond<bool>
Returns an "IS" condition, i.e. 'where var IS null'
no setterinherited
name String
Name of the field
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tableName String?
finalinherited

Methods

aliasAs(String tableAlias) Field<bool>
inherited
between(bool low, bool high) Between<bool>
Returns an "in between" condition
inherited
create(Create statement, {bool isNullable = false, String? uniqueGroup}) → void
Adds the field to create statement
eq(bool value) Cond<bool>
Returns an "is equal to" condition
inherited
eqF(String name, {String? table}) CondCol<bool>
Returns an "is equal to" condition
inherited
eqField(Field<bool> rhs) CondCol<bool>
Returns an "is equal to" condition
inherited
gt(bool value) Cond<bool>
Returns a "greater than" condition
inherited
gtEq(bool value) Cond<bool>
Returns a "greater than equal to" condition
inherited
gtEqF(String name, {String? table}) CondCol<bool>
Returns a "greater than equal to" condition
inherited
gtEqField(Field<bool> rhs) CondCol<bool>
Returns a "greater than equal to" condition
inherited
gtF(String name, {String? table}) CondCol<bool>
Returns a "greater than" condition
inherited
gtField(Field<bool> rhs) CondCol<bool>
Returns a "greater than" condition
inherited
inBetweenFields(Field<bool> low, Field<bool> high) InBetweenCol<bool>
Returns an "in between" condition
inherited
isIn(Set<bool> value) InOperation<bool>
Returns an "in" condition
inherited
lt(bool value) Cond<bool>
Returns a "less than" condition
inherited
ltEq(bool value) Cond<bool>
Returns a "less than equal to" condition
inherited
ltEqF(String name, {String? table}) CondCol<bool>
Returns a "less than equal to" condition
inherited
ltEqField(Field<bool> rhs) CondCol<bool>
Returns a "less than equal to" condition
inherited
ltF(String name, {String? table}) CondCol<bool>
Returns a "less than" condition
inherited
ltField(Field<bool> rhs) CondCol<bool>
Returns a "less than" condition
inherited
ne(bool value) Cond<bool>
Returns a "not equal to" condition
inherited
neF(String name, {String? table}) CondCol<bool>
Returns a "not equal to" condition
inherited
neField(Field<bool> rhs) CondCol<bool>
Returns a "not equal to" condition
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
set(bool? value) SetColumn<bool>
Returns a "set column" clause
inherited
setNullable(bool? value) SetColumn<bool?>
inherited
toString() String
A string representation of this object.
inherited

Operators

operator <(bool other) Cond<bool>
inherited
operator <=(bool other) Cond<bool>
inherited
operator ==(Object other) bool
The equality operator.
inherited
operator >(bool other) Cond<bool>
inherited
operator >=(bool other) Cond<bool>
inherited