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
This is just documentation for myself since Propel1 is not being actively supported.
When filtering by a foreign entity, and using Criteria::NOT_EQUAL, the resulting query contains:
... AND entity.a <> 'valuea' AND entity.b <> 'valueb' ...
where instead it should have
... AND NOT(entity.a = 'valuea' AND entity.b = 'valueb') ...
The text was updated successfully, but these errors were encountered:
This is just documentation for myself since Propel1 is not being actively supported.
When filtering by a foreign entity, and using Criteria::NOT_EQUAL, the resulting query contains:
...
AND entity.a <> 'valuea' AND entity.b <> 'valueb'
...where instead it should have
...
AND NOT(entity.a = 'valuea' AND entity.b = 'valueb')
...The text was updated successfully, but these errors were encountered: