Uses of Interface
is.codion.framework.db.EntityConnection.Select
Packages that use EntityConnection.Select
Package
Description
Package configuration values:
EntityConnectionProvider.CLIENT_CONNECTION_TYPE
EntityConnectionProvider.DESCRIPTION
Package configuration values:
EntityApplicationModel.USER_PREFERENCES
EntityApplicationModel.PREFERENCES_KEY
EntityEditor.PUBLISH_PERSISTENCE_EVENTS
EntityEditor.PERSIST_FOREIGN_KEYS
EntityQueryModel.LIMIT
EntityTableModel.ON_INSERT
EntityTableModel.ORDER_QUERY
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
EntitySearchModel.PERSISTENCE_AWARE
-
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.iterator(EntityConnection.Select select) Returns a result set iterator based on the given select.EntityConnection.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.rmi
Methods in is.codion.framework.db.rmi with parameters of type EntityConnection.SelectModifier and TypeMethodDescriptionRemoteEntityConnection.iterator(EntityConnection.Select select) Returns a result set iterator based on the given select.RemoteEntityConnection.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