EntityQuery<E> |
EntityQuery.distinct() |
Adds a DISTINCT modifier to the query.
|
EntityQuery<E> |
EntityQuery.groupBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> groupBy) |
|
EntityQuery<E> |
EntityQuery.groupBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>... groupBy) |
|
EntityQuery<E> |
EntityQuery.limit(int limit) |
Limits the result of the rows returned to a maximum of the passed integer.
|
EntityQuery<E> |
EntityQuery.limit(int limit,
int offset) |
Limits the result of the rows returned to a maximum of the passed integer with an offset.
|
EntityQuery<E> |
EntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function) |
Sets a single column as the ORDER BY clause for the DQL statement in an ascending manner.
|
EntityQuery<E> |
EntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions,
OrderTypes orderType) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function,
OrderTypes orderType) |
Sets an ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.orderBy(List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.orderBy(List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions,
OrderTypes orderType) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.orWhere(com.github.collinalpert.lambda2sql.functions.SqlPredicate<E> predicate) |
Sets or appends an OR WHERE clause to the DQL statement.
|
EntityQuery<E> |
EntityQuery.thenBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function) |
Sets a single column as the ORDER BY clause for the DQL statement in an ascending manner.
|
EntityQuery<E> |
EntityQuery.thenBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.thenBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>[] functions,
OrderTypes orderType) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.thenBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?> function,
OrderTypes orderType) |
Sets an ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.thenBy(List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.thenBy(List<com.github.collinalpert.lambda2sql.functions.SqlFunction<E,?>> functions,
OrderTypes orderType) |
Sets multiple ORDER BY clauses for the DQL statement.
|
EntityQuery<E> |
EntityQuery.where(com.github.collinalpert.lambda2sql.functions.SqlPredicate<E> predicate) |
Sets or appends a WHERE clause for the DQL statement.
|