From d967c8a70c57aa4908a8a6203787930ca6427fb7 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Tue, 12 Aug 2014 11:53:17 +0200 Subject: [PATCH] DATAJPA-580 - Fixed link to property expression section in reference documentation. --- 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 a79a7f0a7..2258eaeac 100644 --- a/src/main/asciidoc/jpa.adoc +++ b/src/main/asciidoc/jpa.adoc @@ -135,7 +135,7 @@ public interface UserRepository extends Repository { List findByEmailAddressAndLastname(String emailAddress, String lastname); } ---- -We will create a query using the JPA criteria API from this but essentially this translates into the following query: `select u from User u where u.emailAddress = ?1 and u.lastname = ?2`. Spring Data JPA will do a property check and traverse nested properties as described in . Here's an overview of the keywords supported for JPA and what a method containing that keyword essentially translates to. +We will create a query using the JPA criteria API from this but essentially this translates into the following query: `select u from User u where u.emailAddress = ?1 and u.lastname = ?2`. Spring Data JPA will do a property check and traverse nested properties as described in <>. Here's an overview of the keywords supported for JPA and what a method containing that keyword essentially translates to. ==== .Supported keywords inside method names