Interface ASelectQuery
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ASelectQueryorderBy(Order order)Specify an order.ASelectQuerypage(int offset, int size)Set paging information.AResultrun()Run the query and return the result.ASelectQuerywhere(Predicate predicate)Restrict the set of returned records by adding a predicate.
-
-
-
Method Detail
-
where
ASelectQuery where(Predicate predicate)
Restrict the set of returned records by adding a predicate. This method may be called multiple times combining predicates using logical AND.
-
page
ASelectQuery page(int offset, int size)
Set paging information.
-
orderBy
ASelectQuery orderBy(Order order)
Specify an order.
-
run
AResult run()
Run the query and return the result.
-
-