Uses of Class
com.github.collinalpert.java2db.queries.Query
-
Packages that use Query Package Description com.github.collinalpert.java2db.queries com.github.collinalpert.java2db.services -
-
Uses of Query in com.github.collinalpert.java2db.queries
Methods in com.github.collinalpert.java2db.queries that return Query Modifier and Type Method Description Query<T>Query. limit(int limit)Limits the result of the rows returned to a maximum of the passed integer.Query<T>Query. orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<T,?> function)Sets an ORDER BY clause for the DQL statement.Query<T>Query. orderBy(com.github.collinalpert.lambda2sql.functions.SqlFunction<T,?> function, OrderTypes type)Sets an ORDER BY clause for the DQL statement.Query<T>Query. where(com.github.collinalpert.lambda2sql.functions.SqlPredicate<T> predicate)Sets a WHERE clause for the DQL statement. -
Uses of Query in com.github.collinalpert.java2db.services
Methods in com.github.collinalpert.java2db.services that return Query Modifier and Type Method Description protected Query<T>BaseService. getMultiple(com.github.collinalpert.lambda2sql.functions.SqlPredicate<T> predicate)Retrieves list of entities which match the predicate.
-