需要Spring JPA的帮助。假设我想要在获得交通罚单时找到谁检查车。那么hw.sdCard = true
和
licenseNum
大于citationDate
且checkoutDate
小于citationDate
;或returnDate
大于citationDate
且checkoutDate
大于returnDate
。 目前,
null
正确生成#1但产生List<SomeEntity> findByLicenseNumAndCheckOutDatetimeBeforeAndReturnDatetimeAfterOrReturnDatetimeIsNullOrderByIdDesc()
licenseNum
returnDate
的所有null
。
如何用'或'语句正确编写spring JPA语句?
答案 0 :(得分:0)
您实际上可以考虑使用Query
注释,您可以在其中指定自定义查询。 Yon可以选择更有意义的方法名称,并且易于维护/更改。