Uses of Interface
is.codion.framework.db.EntityConnection.Select
Packages that use EntityConnection.Select
Package
Description
Package configuration values:
EntityConnectionProvider.CLIENT_DOMAIN_TYPE
EntityConnectionProvider.CLIENT_CONNECTION_TYPE
Package configuration values:
EntityApplicationModel.USERNAME_PREFIX
EntityApplicationModel.SAVE_DEFAULT_USERNAME
EntityEditModel.POST_EDIT_EVENTS
EntityEditModel.EntityEditor.PERSIST_FOREIGN_KEYS
EntityQueryModel.LIMIT
EntityTableModel.ON_INSERT
EntityTableModel.HANDLE_EDIT_EVENTS
EntityTableModel.ORDER_QUERY_BY_SORT_ORDER
ForeignKeyModelLink.SET_CONDITION_ON_INSERT
ForeignKeyModelLink.SET_VALUE_ON_INSERT
ForeignKeyModelLink.REFRESH_ON_SELECTION
ForeignKeyModelLink.CLEAR_CONDITION_ON_EMPTY_SELECTION
ForeignKeyModelLink.CLEAR_VALUE_ON_EMPTY_SELECTION
EntitySearchModel.DEFAULT_LIMIT
-
Uses of EntityConnection.Select in is.codion.framework.db
Methods in is.codion.framework.db that return EntityConnection.SelectMethods in is.codion.framework.db with parameters of type EntityConnection.SelectModifier and TypeMethodDescriptionEntityConnection.select
(EntityConnection.Select select) Selects entities based on the given select// Select with ordering and limit List<Entity> recentInvoices = connection.select( Select.where(Invoice.CUSTOMER_FK.equalTo(customer)) .orderBy(OrderBy.descending(Invoice.DATE)) .limit(10) .build() ); // Select specific attributes only List<Entity> trackInfo = connection.select( Select.where(Track.ALBUM_FK.equalTo(album)) .attributes(Track.NAME, Track.MILLISECONDS) .build() ); // Control foreign key fetching depth List<Entity> tracks = connection.select( Select.where(Track.GENRE_FK.equalTo(genre)) .referenceDepth(0) // Don't fetch foreign keys .build() );
<T> List
<T> EntityConnection.select
(Column<T> column, EntityConnection.Select select) Selects distinct non-null values of the given column.EntityQueries.select
(EntityConnection.Select select) EntityConnection.selectSingle
(EntityConnection.Select select) Selects a single entity based on the specified select -
Uses of EntityConnection.Select in is.codion.framework.db.local
Methods in is.codion.framework.db.local with parameters of type EntityConnection.SelectModifier and TypeMethodDescriptionLocalEntityConnection.iterator
(EntityConnection.Select select) Returns a result set iterator based on the given select. -
Uses of EntityConnection.Select in is.codion.framework.db.rmi
Methods in is.codion.framework.db.rmi with parameters of type EntityConnection.SelectModifier and TypeMethodDescriptionRemoteEntityConnection.select
(EntityConnection.Select select) Selects entities based on the given select<T> List
<T> RemoteEntityConnection.select
(Column<T> column, EntityConnection.Select select) Selects distinct non-null values of the given column.RemoteEntityConnection.selectSingle
(EntityConnection.Select select) Selects a single entity based on the specified select -
Uses of EntityConnection.Select in is.codion.framework.model
Methods in is.codion.framework.model that return EntityConnection.Select