We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I create a Repository like:
interface TRepository : Repository<T, ID> { fun findAll(page:Pageable) : List<T> }
the implementation uses
Page<T> JdbcAggregateTemplate.findAll(Class<T> domainType, Pageable pageable)
under the hood, which issues an (in this case) unnecessary "select count".
Can you think of adding an implementation that omits the additional select?
The text was updated successfully, but these errors were encountered:
b3a2925
Add documentation for streaming results.
b8f3291
Also us Github issue numbers on tests. See #578, #971
377d841
Also us Github issue numbers on tests. Original pull request #903 See #578, #971
Applying changes to documentation.
95b2db5
As suggested by Jay Bryant. Original pull request #903 See #578, #971
mp911de
Successfully merging a pull request may close this issue.
When I create a Repository like:
the implementation uses
under the hood, which issues an (in this case) unnecessary "select count".
Can you think of adding an implementation that omits the additional select?
The text was updated successfully, but these errors were encountered: