You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently SimpleR2dbcRepository only implements ReactiveCrudRepository. It does not implement or provide the extra method defined by ReactiveSortingRepository.
Modifying SimpleR2dbcRepository to implement ReactiveSortingRepository would allow consumers to use that interface (and its friends such as CoroutineSortingRepository) when defining their repositories.
Implements ReactiveSortingRepository on SimpleR2dbcRepository. Also changed R2dbcRepository to extend ReactiveSortingRepository and updated comments where it felt reasonable.
Added a single unit test for the new method, and changed the base interface of LegoSetRepository in AbstractR2dbcRepositoryIntegrationTests for integration testing purposes.
Clarify documentation on reactive repository base interfaces
Adds some language calling out ReactiveSortingRepository and fixes consistency between related examples.
Original pull request: #408.
Guard find(Sort) against null values. Add author to documentation. Use ReactiveDataAccessStrategy in R2dbcEntityTemplate created in SimpleR2dbcRepository.
Original pull request: #408.
Implements ReactiveSortingRepository on SimpleR2dbcRepository. Also changed R2dbcRepository to extend ReactiveSortingRepository and updated comments where it felt reasonable.
Added a single unit test for the new method, and changed the base interface of LegoSetRepository in AbstractR2dbcRepositoryIntegrationTests for integration testing purposes.
Clarify documentation on reactive repository base interfaces
Adds some language calling out ReactiveSortingRepository and fixes consistency between related examples.
Original pull request: #408.
Guard find(Sort) against null values. Add author to documentation. Use ReactiveDataAccessStrategy in R2dbcEntityTemplate created in SimpleR2dbcRepository.
Original pull request: #408.
Currently
SimpleR2dbcRepository
only implementsReactiveCrudRepository
. It does not implement or provide the extra method defined byReactiveSortingRepository
.Modifying
SimpleR2dbcRepository
to implementReactiveSortingRepository
would allow consumers to use that interface (and its friends such asCoroutineSortingRepository
) when defining their repositories.I plan to put up a PR for this soon.
This is a follow-up from DATACMNS-1769
Thank you to @mp911de for pointing me in the right direction!
The text was updated successfully, but these errors were encountered: