|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use QueryBuilder | |
|---|---|
| de.greenrobot.dao | |
| Uses of QueryBuilder in de.greenrobot.dao |
|---|
| Methods in de.greenrobot.dao that return QueryBuilder | ||
|---|---|---|
|
QueryBuilder.join(java.lang.ClassNot supported yet. |
|
|
QueryBuilder.joinToMany(java.lang.ClassNot supported yet. |
|
QueryBuilder<T> |
QueryBuilder.limit(int limit)Limits the number of results returned by queries. |
|
QueryBuilder<T> |
QueryBuilder.offset(int offset)Sets the offset for query results in combination with limit(int). |
|
QueryBuilder<T> |
QueryBuilder.orderAsc(Property... properties)Adds the given properties to the ORDER BY section using ascending order. |
|
QueryBuilder<T> |
QueryBuilder.orderCustom(Property property, java.lang.String customOrderForProperty)Adds the given properties to the ORDER BY section using the given custom order. |
|
QueryBuilder<T> |
QueryBuilder.orderDesc(Property... properties)Adds the given properties to the ORDER BY section using descending order. |
|
QueryBuilder<T> |
QueryBuilder.orderRaw(java.lang.String rawOrder)Adds the given raw SQL string to the ORDER BY section. |
|
QueryBuilder<T> |
AbstractDao.queryBuilder() |
|
|
AbstractDaoSession.queryBuilder(java.lang.ClassConvenient call for AbstractDao.queryBuilder(). |
|
QueryBuilder<T> |
QueryBuilder.where(WhereCondition cond, WhereCondition... condMore)Adds the given conditions to the where clause using an logical AND. |
|
QueryBuilder<T> |
QueryBuilder.whereOr(WhereCondition cond1, WhereCondition cond2, WhereCondition... condMore)Adds the given conditions to the where clause using an logical OR. |
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||