Uses of Class
net.lecousin.reactive.data.relational.query.SelectQuery
-
Packages that use SelectQuery Package Description net.lecousin.reactive.data.relational net.lecousin.reactive.data.relational.query -
-
Uses of SelectQuery in net.lecousin.reactive.data.relational
Methods in net.lecousin.reactive.data.relational with parameters of type SelectQuery Modifier and Type Method Description <T> reactor.core.publisher.Flux<T>LcReactiveDataRelationalClient. execute(SelectQuery<T> query, LcEntityReader reader)Execute a select query using the given LcEntityReader to map rows to entities.reactor.core.publisher.Mono<Long>LcReactiveDataRelationalClient. executeCount(SelectQuery<?> query)Execute a select query. -
Uses of SelectQuery in net.lecousin.reactive.data.relational.query
Methods in net.lecousin.reactive.data.relational.query that return SelectQuery Modifier and Type Method Description static <T> SelectQuery<T>SelectQuery. from(Class<T> type, String alias)Create a SELECT query from the table of the given entity type, using the given alias.SelectQuery<T>SelectQuery. join(String entityName, String propertyName, String alias)Create a join, using the link entityName.propertyName, and using the given alias as the joined entity name.SelectQuery<T>SelectQuery. limit(long start, long count)Apply a limit and offset to the select query.SelectQuery<T>SelectQuery. orderBy(String entityName, String propertyName, boolean ascending)Add an ORDER BY clause to this select query.SelectQuery<T>SelectQuery. where(Criteria criteria)Set the given criteria in the where clause.Constructors in net.lecousin.reactive.data.relational.query with parameters of type SelectQuery Constructor Description SelectExecution(SelectQuery<T> query, LcReactiveDataRelationalClient client, LcEntityReader reader)
-