mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-03-08 02:40:24 +00:00
update doc about query method return types
This commit is contained in:
parent
0918791f47
commit
58aff00957
@ -578,6 +578,16 @@ But when there's just one item in the `select` list, the type of that item shoul
|
|||||||
String getBookTitleByIsbn(String isbn);
|
String getBookTitleByIsbn(String isbn);
|
||||||
----
|
----
|
||||||
|
|
||||||
|
A query which returns a selection list may have a query method which repackages the result as a record, as we saw in <<projection-lists>>.
|
||||||
|
|
||||||
|
[source,java]
|
||||||
|
----
|
||||||
|
record IsbnTitle(String isbn, String title) {}
|
||||||
|
|
||||||
|
@HQL("select isbn, title from Book")
|
||||||
|
List<IsbnTitle> listIsbnAndTitleForEachBook(Page page);
|
||||||
|
----
|
||||||
|
|
||||||
A query method might even return `TypedQuery` or `SelectionQuery`:
|
A query method might even return `TypedQuery` or `SelectionQuery`:
|
||||||
|
|
||||||
[source,java]
|
[source,java]
|
||||||
@ -625,6 +635,14 @@ List<Book> books =
|
|||||||
// })
|
// })
|
||||||
// ----
|
// ----
|
||||||
|
|
||||||
|
An `insert`, `update`, or `delete` query must return `int` or `void`.
|
||||||
|
|
||||||
|
[source,java]
|
||||||
|
----
|
||||||
|
@HQL("delete from Book")
|
||||||
|
void deleteAllBooks();
|
||||||
|
----
|
||||||
|
|
||||||
On the other hand, finder methods are currently much more limited.
|
On the other hand, finder methods are currently much more limited.
|
||||||
A finder method must return an entity type like `Book`, or a list of the entity type, `List<Book>`, for example.
|
A finder method must return an entity type like `Book`, or a list of the entity type, `List<Book>`, for example.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user