Package | Description |
---|---|
org.springframework.data.relational.core.query |
Query and update support.
|
org.springframework.data.relational.repository.query |
Query support for relational database repositories.
|
Modifier and Type | Method and Description |
---|---|
Query |
Query.columns(Collection<String> columns)
Add columns to the query.
|
Query |
Query.columns(SqlIdentifier... columns)
Add columns to the query.
|
Query |
Query.columns(String... columns)
Add columns to the query.
|
static Query |
Query.empty()
Create a new empty
Query . |
Query |
Query.limit(int limit)
Limit the number of returned documents to
limit . |
Query |
Query.offset(long offset)
Set number of rows to skip before returning results.
|
static Query |
Query.query(CriteriaDefinition criteria)
Static factory method to create a
Query using the provided CriteriaDefinition . |
Query |
Query.sort(Sort sort)
|
Query |
Query.with(Pageable pageable)
Set the given pagination information on the
Query instance. |
Modifier and Type | Method and Description |
---|---|
<T> Query |
RelationalExampleMapper.getMappedExample(Example<T> example)
|
Copyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.