如何在find方法中使用OR运算符?
我如何使用这样的东西:
@comments = @company.comments.where(:approved => true).or(:ip => request.remote_ip).all
我应该安装任何特定的gem来执行此操作吗?
我使用rails 3.0.4和mysql2。
谢谢。
how could I use something like this:
@comments = @company.comments.where(:approved => true).or(:ip => request.remote_ip).all
Should I have to install any specific gem for doing this?
I using rails 3.0.4 and mysql2.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅文档中的“条件”部分,其中解释了在的条件。您的查询将写为:
See the "Conditions" section in the documentation, where it explains using multiple parameters in the conditions. Your query would be written: