Skip to content

Commit f3dfd0b

Browse files
committed
Document primitive type properties when using Query by Example.
Closes #2308.
1 parent 3049307 commit f3dfd0b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/asciidoc/query-by-example.adoc

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ public class Person {
5555
The preceding example shows a simple domain object.
5656
You can use it to create an `Example`.
5757
By default, fields having `null` values are ignored, and strings are matched by using the store specific defaults.
58+
59+
NOTE: Inclusion of properties into a Query by Example criteria is based on nullability. Properties using primitive types (`int`, `double`, …) are always included unless <<query-by-example.matchers,ignoring the property path>>.
60+
5861
Examples can be built by either using the `of` factory method or by using <<query-by-example.matchers,`ExampleMatcher`>>. `Example` is immutable.
5962
The following listing shows a simple Example:
6063

0 commit comments

Comments
 (0)