From 741dc5c9fd18b4bc52bbd446d2f485ff11a4d232 Mon Sep 17 00:00:00 2001 From: "Derek P. Moore" Date: Thu, 21 Nov 2024 14:28:08 -0600 Subject: [PATCH] Update query-methods.adoc, In & NotIn accept Iterable --- src/main/antora/modules/ROOT/pages/jpa/query-methods.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/antora/modules/ROOT/pages/jpa/query-methods.adoc b/src/main/antora/modules/ROOT/pages/jpa/query-methods.adoc index f96e27eeed..daa5bf6f8b 100644 --- a/src/main/antora/modules/ROOT/pages/jpa/query-methods.adoc +++ b/src/main/antora/modules/ROOT/pages/jpa/query-methods.adoc @@ -68,7 +68,7 @@ The following table describes the keywords supported for JPA and what a method c |`IgnoreCase`|`findByFirstnameIgnoreCase`|`… where UPPER(x.firstname) = UPPER(?1)` |=============== -NOTE: `In` and `NotIn` also take any subclass of `Collection` as a parameter as well as arrays or varargs. For other syntactical versions of the same logical operator, check xref:repositories/query-keywords-reference.adoc[Repository query keywords]. +NOTE: `In` and `NotIn` also take any subclass of `Iterable` as a parameter as well as arrays or varargs. For other syntactical versions of the same logical operator, check xref:repositories/query-keywords-reference.adoc[Repository query keywords]. [WARNING] ====