You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,19 @@ one2many and many2many are represented by the `Relation` type and allow you to e
167
167
168
168
### Criteria and Options
169
169
170
-
`Criteria` is a set of criterion and allow you to query models. [More informations](https://www.odoo.com/documentation/13.0/reference/orm.html#search-domains)
170
+
`Criteria` is a set of Criterion and allow you to query models. [More informations](https://www.odoo.com/documentation/13.0/reference/orm.html#search-domains)
171
+
172
+
#### Combined Criterions
173
+
174
+
Criterions can be combined using AND (arity 2), OR (arity 2) and NOT (arity 1) operators.
175
+
Criteria have And, Or and Not methods to be able to do such query eg:
0 commit comments