| Package | Description |
|---|---|
| com.holonplatform.core.datastore.relational |
| Modifier and Type | Method and Description |
|---|---|
static SubQuery<Integer> |
SubQuery.create()
Build a sub query with a default
select 1 projection as selection. |
static <T> SubQuery<T> |
SubQuery.create(Class<? extends T> selectionType)
Build a sub query with given selection type.
|
static SubQuery<Integer> |
SubQuery.create(Datastore datastore)
Deprecated.
Datastore parameter is no longer required, use
create() instead |
static <T> SubQuery<T> |
SubQuery.create(Datastore datastore,
Class<? extends T> selectionType)
Deprecated.
Datastore parameter is no longer required, use
create(Class) instead |
static <T> SubQuery<T> |
SubQuery.create(Datastore datastore,
QueryProjection<T> selection)
Deprecated.
Datastore parameter is no longer required, use
create(QueryProjection) instead |
static <T> SubQuery<T> |
SubQuery.create(QueryProjection<T> selection)
Build a sub query with given projection as selection.
|
SubQuery<T> |
SubQuery.select(QueryProjection<T> projection)
Specify the projection to use as the subquery result.
|
Copyright © 2019 The Holon Platform. All rights reserved.