public interface EntityQueryModel
Provides entities based on query conditions.
The default data source can be overridden by using
dataSource()
.
tableModel.queryModel().dataSource().set(queryModel -> {
EntityConnection connection = queryModel.connectionProvider().connection();
return connection.select(Employee.NAME.equalTo("John"));
});
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Specifies an additional condition supplier.static interface
Manages the attributes to include when querying. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PropertyValue
<Integer> Specifes a defaultlimit()
to set for query models. -
Method Summary
Modifier and TypeMethodDescriptionThis state is reset each timequery()
returns successfully.It can be necessary to prevent the user from selecting too much data, when working with a large dataset.Returns aState
controlling whether this query model should query all underlying entities when no query condition has been set.AValue
controlling the data source.static EntityQueryModel
entityQueryModel
(EntityTableConditionModel conditionModel) having()
Controls the additional HAVING condition, which can be used in conjunction withconditions()
.limit()
Returns theValue
controlling the maximum number of rows to fetch, a null value means all rows should be fetchedorderBy()
Controls the order by clause to use when selecting the data for this model.query()
Performs a query and returns the result.select()
where()
Controls the additional WHERE condition, which can be used in conjunction withconditions()
.
-
Field Details
-
LIMIT
Specifes a defaultlimit()
to set for query models.- Value type: Integer
- Default value: null
-
-
Method Details
-
entityType
EntityType entityType()- Returns:
- the type of the entity this query model is based on
-
connectionProvider
EntityConnectionProvider connectionProvider()- Returns:
- the connection provider
-
query
Performs a query and returns the result. Note that if a query condition is required (conditionRequired()
) and the condition is not enabled (conditionEnabled()
) an empty list is returned.- Returns:
- entities selected from the database according to the query condition.
- See Also:
-
select
EntityConnection.Select select()- Returns:
- a
EntityConnection.Select
instance based on the current state of thisEntityQueryModel
-
conditions
EntityTableConditionModel conditions()- Returns:
- the
EntityTableConditionModel
instance used by this query model
-
where
Controls the additional WHERE condition, which can be used in conjunction withconditions()
. The condition supplier may return null in case of no condition. Note that in order for theconditionChanged()
ObservableState
to indicate a changed condition, the additional condition must be set viaValue.set(Object)
, changing the return value of the underlyingSupplier
instance does not trigger a changed condition.- Returns:
- the
EntityQueryModel.AdditionalCondition
instance controlling the additional WHERE condition
-
having
EntityQueryModel.AdditionalCondition having()Controls the additional HAVING condition, which can be used in conjunction withconditions()
. The condition supplier may return null in case of no condition. Note that in order for theconditionChanged()
ObservableState
to indicate a changed condition, the additional condition must be set viaValue.set(Object)
, changing the return value of the underlyingSupplier
instance does not trigger a changed condition.- Returns:
- the
EntityQueryModel.AdditionalCondition
instance controlling the additional HAVING condition
-
conditionRequired
State conditionRequired()Returns aState
controlling whether this query model should query all underlying entities when no query condition has been set. Setting this value to 'true' prevents all rows from being fetched by accident, when no condition has been set, which is recommended for queries with a large underlying dataset.- Returns:
- a
State
controlling whether this query model requires a query condition - See Also:
-
conditionChanged
ObservableState conditionChanged()This state is reset each timequery()
returns successfully.- Returns:
- an
ObservableState
indicating if the search condition has changed since last reset
-
attributes
EntityQueryModel.SelectAttributes attributes()- Returns:
- the
EntityQueryModel.SelectAttributes
instance
-
limit
Returns theValue
controlling the maximum number of rows to fetch, a null value means all rows should be fetched- Returns:
- the
Value
controlling the query limit
-
orderBy
Controls the order by clause to use when selecting the data for this model. Setting this value to null reverts back to the default order by for the underlying entity, if one has been specified- Returns:
- the
Value
controlling the order by clause - See Also:
-
conditionEnabled
Value<ObservableState> conditionEnabled()It can be necessary to prevent the user from selecting too much data, when working with a large dataset. This can be done by enabling theconditionRequired()
State
, which prevents a refresh as long as theObservableState
controlled via this method is disabled. The defaultObservableState
is simplyEntityTableConditionModel.enabled()
. Override for a more fine-grained control, such as requiring a specific column condition to be enabled.- Returns:
- the
Value
controlling theObservableState
specifying if enough conditions are enabled for a safe refresh - See Also:
-
dataSource
Value<Function<EntityQueryModel,List<Entity>>> dataSource()AValue
controlling the data source. Use this to replace the default one.- Returns:
- the
Value
controlling the data source
-
entityQueryModel
- Parameters:
conditionModel
- theEntityTableConditionModel
- Returns:
- a new
EntityQueryModel
instance based on the givenEntityTableConditionModel
-