我应该如何建立我的findBy方法名称,以便可以实现where子句-
statusCode != 'Denied'
这是一个选择吗?
findByStatusCodeNotIn(List<String> statusCode);
如果我只想传递字符串而不是列表怎么办?
谢谢
最佳答案
您看过documentation about this in the Spring Data JPA
docs吗?
#findByStatusCodeNot(String statusCode);
这类似于docs中的示例:
#findByLastnameNot
希望有帮助!
关于spring-data-jpa - 使用Spring CrudRepository时'不等于'条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51200708/