improve code example of tuple criteria

This commit is contained in:
Gavin 2023-05-29 11:57:18 +02:00 committed by Gavin King
parent 2728cbe014
commit c85cd22956
1 changed files with 1 additions and 1 deletions

View File

@ -891,7 +891,7 @@ Consider the following code:
[source,java]
----
var cb = sessionFactory.getCriteriaBuilder();
var query = cb.createQuery(Tuple.class);
var query = cb.createTupleQuery();
var book = query.from(Book.class);
var bookTitle = book.get(Book_.title);
var bookIsbn = book.get(Book_.isbn);