AsyncEntityQuery<E> |
AsyncEntityQuery.limit(int limit) |
Limits the result of the rows returned to a maximum of the passed integer.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.limit(int limit,
int offset) |
Limits the result of the rows returned to a maximum of the passed integer with an offset.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(OrderTypes orderType,
com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function) |
Sets an ORDER BY clauses for the DQL statement with a sorting order option.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(OrderTypes orderType,
com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions) |
Sets multiple ORDER BY clauses for the DQL statement with a sorting order option.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(OrderTypes orderType,
java.util.List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions) |
Sets multiple ORDER BY clauses for the DQL statement with a sorting order option.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function) |
Sets an ORDER BY clauses for the DQL statement.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orderBy(java.util.List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.orWhere(com.github.collinalpert.lambda2sql.functions.SqlPredicate<E> predicate) |
Sets or appends an OR WHERE clause to the DQL statement.
|
AsyncEntityQuery<E> |
AsyncEntityQuery.where(com.github.collinalpert.lambda2sql.functions.SqlPredicate<E> predicate) |
Sets or appends a WHERE clause for the DQL statement.
|