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
This introduces the interfaces
* `ListCrudRepository`
* `ListQuerydslPredicateExecutor`
* `ListQueryByExampleExecutor`
They return `List` instead of `Iterable` when returning multiple entities.
They can be used in the same way the interfaces without the `List` prefix can be used.
Closes#2535.
This introduces the interfaces
* `ListCrudRepository`
* `ListQuerydslPredicateExecutor`
* `ListQueryByExampleExecutor`
They return `List` instead of `Iterable` when returning multiple entities.
They can be used in the same way the interfaces without the `List` prefix can be used.
Closes#2535.
Original pull request: #2538.
mp911de
changed the title
Create additional List based repository interfaces
Create additional List-based repository interfaces
Feb 11, 2022
ListCrudRepository
ListQuerydslPredicateExecutor
ListQueryByExampleExecutor
These interfaces should look like there existing counterparts, but return a
List
where the existing ones return anIterable
.The text was updated successfully, but these errors were encountered: