Browse Source

Fix a typo in the docs for query methods.

Original pull request #1163
2.3.x
Jan Michal 4 years ago committed by Jens Schauder
parent
commit
c4a7858b8c
No known key found for this signature in database
GPG Key ID: 45CC872F17423DBF
  1. 4
      src/main/asciidoc/jdbc.adoc

4
src/main/asciidoc/jdbc.adoc

@ -550,11 +550,11 @@ The following table shows the keywords that are supported for query methods: @@ -550,11 +550,11 @@ The following table shows the keywords that are supported for query methods:
| `Containing` on String
| `findByFirstnameContaining(String name)`
| `firstname LIKE '%' name +'%'`
| `firstname LIKE '%' + name + '%'`
| `NotContaining` on String
| `findByFirstnameNotContaining(String name)`
| `firstname NOT LIKE '%' name +'%'`
| `firstname NOT LIKE '%' + name + '%'`
| `(No keyword)`
| `findByFirstname(String name)`

Loading…
Cancel
Save