We now support distinct derived queries that are useful with projections to retrieve distinct results.
interface UserRepository extends Repository<User, Long> {
Mono<UserProjection> findDistinctByFirstName(String firstName);
}
interface UserProjection {
String getFirstName();
}
Original pull request: #346.
Consider projection properties as SELECT projection. Refactor distinct() into marker method without accepting a boolean flag. Make distinct field final. Update tests.
Original pull request: #346.
John Blum opened DATAJDBC-110 and commented
Assert compatibility of Spring Data JDBC on Java 9.
Setup Travis CI build using JDK 9
No further details from DATAJDBC-110
The text was updated successfully, but these errors were encountered: