DATAJPA-1549 - Indicate that "Is" in "IsNull" is optional.

Original pull request: #238.
This commit is contained in:
ugultopu
2017-12-13 21:10:11 -04:00
committed by Jens Schauder
parent 83b2b13b87
commit 866be88a5a

View File

@@ -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`