DATAJPA-1549 - Indicate that "Is" in "IsNull" is optional.
Original pull request: #238.
This commit is contained in:
@@ -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`
|
||||
|
||||
Reference in New Issue
Block a user