Select

Undocumented in source.

Constructors

this
this(miniorm.query_ast.Select q)
Undocumented in source.
this
this(string from)
Undocumented in source.

Members

Functions

count
auto count()

Count the number of matching rows.

limit
auto limit(long value)

Limit the query to this number of answers

orderBy
auto orderBy(OrderingTermSort s, string[] fields)

Order the result by s in the order the fields are defined in T.

toSql
Sql toSql()

Convert to a SQL statement that can e.g. be pretty printed.

Mixins

__anonymous
mixin WhereMixin!(T, typeof(this), miniorm.query_ast.Select)
Undocumented in source.

Variables

query
miniorm.query_ast.Select query;
Undocumented in source.

Mixed In Members

From mixin WhereMixin!(T, typeof(this), miniorm.query_ast.Select)

binds
Bind[] binds;
Undocumented in source.
where
auto where(string lhs, Bind[] b)

Add a WHERE clause with a bound value.

where
auto where(string lhs, Bind b)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta