We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51af19e commit ce12817Copy full SHA for ce12817
src/main/asciidoc/jpa.adoc
@@ -198,7 +198,7 @@ The following table describes the keywords supported for JPA and what a method c
198
|`GreaterThanEqual`|`findByAgeGreaterThanEqual`|`… where x.age >= ?1`
199
|`After`|`findByStartDateAfter`|`… where x.startDate > ?1`
200
|`Before`|`findByStartDateBefore`|`… where x.startDate < ?1`
201
-|`IsNull`|`findByAgeIsNull`|`… where x.age is null`
+|`IsNull`|`findByAge(Is)Null`|`… where x.age is null`
202
|`IsNotNull,NotNull`|`findByAge(Is)NotNull`|`… where x.age not null`
203
|`Like`|`findByFirstnameLike`|`… where x.firstname like ?1`
204
|`NotLike`|`findByFirstnameNotLike`|`… where x.firstname not like ?1`
0 commit comments