Skip to content

Commit

Permalink
DATAJPA-1067 - Fixed type on JPQL keyword mapping table.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Sep 27, 2017
1 parent c72489b commit bac3dd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/asciidoc/jpa.adoc
Expand Up @@ -161,7 +161,7 @@ We will create a query using the JPA criteria API from this but essentially this
|`OrderBy`|`findByAgeOrderByLastnameDesc`|`… where x.age = ?1 order by x.lastname desc`
|`Not`|`findByLastnameNot`|`… where x.lastname <> ?1`
|`In`|`findByAgeIn(Collection<Age> ages)`|`… where x.age in ?1`
|`NotIn`|`findByAgeNotIn(Collection<Age> age)`|`… where x.age not in ?1`
|`NotIn`|`findByAgeNotIn(Collection<Age> ages)`|`… where x.age not in ?1`
|`True`|`findByActiveTrue()`|`… where x.active = true`
|`False`|`findByActiveFalse()`|`… where x.active = false`
|`IgnoreCase`|`findByFirstnameIgnoreCase`|`… where UPPER(x.firstame) = UPPER(?1)`
Expand Down

0 comments on commit bac3dd2

Please sign in to comment.