Created
January 10, 2021 18:00
-
-
Save kamalhm/7bba36c781a6d08c9797558b8dd18a06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface MemberRepository extends R2dbcRepository<Member, Long> { | |
Mono<Member> findByName(String name); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment