There is a way in Spring Data to find if exists a Name that not contains a Code?
Something like:
existsNameWithDifferentCode(String name, Long code);
I'm doing a update and I have to check if this update doesn't contain the same Name as another.
If I cannot do this with the Spring Data signature method, there is a way to do that with ExampleMatcher?
Or any suggestion?