Propel:否定多个条件

发布于 2024-09-15 03:44:22 字数 194 浏览 5 评论 0原文

我需要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜柠檬 2024-09-22 03:44:22

这是等价的:
某事 != 'a' 或 someOtherThing != 'b'

here is the equivalent:
something != 'a' or someOtherThing != 'b'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文