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
Doing so, the predicate is name == "Toto && age IN {20,30,40} OR score > 400.
There is no way to specify this predicate: name == "Toto && (age IN {20,30,40} OR score > 400).
The goal is to add nested compound predicates, either by adding the possibility for an and predicate function to have another compound operator, or with another way.
The text was updated successfully, but these errors were encountered:
Currently, the fetch request predicate specification only allows flat compound predicates:
Doing so, the predicate is
name == "Toto && age IN {20,30,40} OR score > 400
.There is no way to specify this predicate:
name == "Toto && (age IN {20,30,40} OR score > 400)
.The goal is to add nested compound predicates, either by adding the possibility for an
and
predicate function to have another compound operator, or with another way.The text was updated successfully, but these errors were encountered: