From 866be88a5a20fc81be3b491765c062bd4ca3bda5 Mon Sep 17 00:00:00 2001 From: ugultopu Date: Wed, 13 Dec 2017 21:10:11 -0400 Subject: [PATCH] DATAJPA-1549 - Indicate that "Is" in "IsNull" is optional. Original pull request: #238. --- src/main/asciidoc/jpa.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/jpa.adoc b/src/main/asciidoc/jpa.adoc index 9ed7ef39c..ef1842e70 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -198,7 +198,7 @@ The following table describes the keywords supported for JPA and what a method c |`GreaterThanEqual`|`findByAgeGreaterThanEqual`|`… where x.age >= ?1` |`After`|`findByStartDateAfter`|`… where x.startDate > ?1` |`Before`|`findByStartDateBefore`|`… where x.startDate < ?1` -|`IsNull`|`findByAgeIsNull`|`… where x.age is null` +|`IsNull`|`findByAge(Is)Null`|`… where x.age is null` |`IsNotNull,NotNull`|`findByAge(Is)NotNull`|`… where x.age not null` |`Like`|`findByFirstnameLike`|`… where x.firstname like ?1` |`NotLike`|`findByFirstnameNotLike`|`… where x.firstname not like ?1`