Propel:否定多个条件
我需要使用 Propel 同时否定多个条件。例如相应的sql条件是:
WHERE !(something = 'a' and someOtherThing = 'b')
我找不到使用Propel ORM解决这个问题的方法。有没有办法使用 Propel 1.3 提供的 Criteria-API 构建此查询?
I need to negate multiple conditions at once using Propel. E. g. a corresponding sql condition is:
WHERE !(something = 'a' and someOtherThing = 'b')
I couldn't find a way to solve this using Propel ORM. Is there a way to build this query with the Criteria-API that Propel 1.3 provides?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是等价的:
某事 != 'a' 或 someOtherThing != 'b'
here is the equivalent:
something != 'a' or someOtherThing != 'b'