Skip to content

Commit 866be88

Browse files
ugultopuschauder
authored andcommitted
DATAJPA-1549 - Indicate that "Is" in "IsNull" is optional.
Original pull request: #238.
1 parent 83b2b13 commit 866be88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/asciidoc/jpa.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ The following table describes the keywords supported for JPA and what a method c
198198
|`GreaterThanEqual`|`findByAgeGreaterThanEqual`|`… where x.age >= ?1`
199199
|`After`|`findByStartDateAfter`|`… where x.startDate > ?1`
200200
|`Before`|`findByStartDateBefore`|`… where x.startDate < ?1`
201-
|`IsNull`|`findByAgeIsNull`|`… where x.age is null`
201+
|`IsNull`|`findByAge(Is)Null`|`… where x.age is null`
202202
|`IsNotNull,NotNull`|`findByAge(Is)NotNull`|`… where x.age not null`
203203
|`Like`|`findByFirstnameLike`|`… where x.firstname like ?1`
204204
|`NotLike`|`findByFirstnameNotLike`|`… where x.firstname not like ?1`

0 commit comments

Comments
 (0)