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
When I built the query using the find(query) method on the DocumentStore where in the query there was a LESS condition, only the values that were equal to the value got returned.
My query condition: condition.is("expiration", QueryCondition.Op.LESS, 123L)
After some debugging I found that class ConditionEvaluator seems to only support EQUALS operation.
Can you verify if the comparison in that class is done correctly in the framework?
Is there a way to test conditions other than EQUALS?
Best regards
The text was updated successfully, but these errors were encountered:
When I built the query using the
find(query)
method on theDocumentStore
where in the query there was a LESS condition, only the values that were equal to the value got returned.My query condition:
condition.is("expiration", QueryCondition.Op.LESS, 123L)
After some debugging I found that class
ConditionEvaluator
seems to only support EQUALS operation.Can you verify if the comparison in that class is done correctly in the framework?
Is there a way to test conditions other than EQUALS?
Best regards
The text was updated successfully, but these errors were encountered: