| Interface | Description |
|---|---|
| BaseQuery<T> | |
| DeleteQuery<T> |
delete query to write a delete query with a set of condition
usage example:
DeleteQuery<Person> delete = new GenericDeleteQuery<Person>(Person.class);
Person toDelete = delete.target();
delete.eq(toDelete.getName(),"match name");
|
| HavingCondition | |
| InsertQuery<T> |
insert query allow to declare a query to insert a new record.
|
| ObjectQuery<T> | Deprecated |
| QueryCondition |
Base Condition interface that allow to add condition and group of condition.
|
| SelectQuery<T> |
SelectQuery is the main interface for build a "SELECT" query, it allow to add
projection, condition, order and having clauses using instances of domain
classes.
|
| UpdateQuery<T> |
Update query allow to set the values and condition of a update query.
|
| Class | Description |
|---|---|
| QueryEngine<S> |
Copyright © 2014 Object Query. All rights reserved.