We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be0b941 commit 16d55c8Copy full SHA for 16d55c8
src/main/asciidoc/reference/mongodb.adoc
@@ -2074,10 +2074,11 @@ mongoOperations.find<Book>(
2074
)
2075
2076
mongoOperations.find<Book>(
2077
- Criteria().andOperator(
2078
- Book::price gt 5,
2079
- Book::price lt 10
2080
- )
+ Query(
+ Criteria().andOperator(
+ Book::price gt 5,
+ Book::price lt 10
2081
+ ))
2082
2083
2084
// Binary operators
0 commit comments