Rails/AR 查找 habtm 不包含的地方
我有一个包含用户的 Rails 应用程序,以及每个用户的 HABTM 角色。
我想选择没有特定角色的用户。 我可以使用 searchlogic,但我迷路了。 我尝试过使用条件、连接和包含的组合,但我似乎无法解决它。 这有效:
User.find(:all, :conditions => ['role_id != ?', Role[:admin].id], :joins => :roles)
查找不是管理员的用户,但不会找到没有角色的用户(我也想找到)。
在我疲惫的状态下,我错过了什么简单的事情?
I have a Rails app with Users, and each user HABTM Roles.
I want to select Users without a specific role. I have searchlogic at my disposal, and I'm lost. I've tried using a combination of conditions and joins and includes and what not, but I can't seem to nail it. This works:
User.find(:all, :conditions => ['role_id != ?', Role[:admin].id], :joins => :roles)
To find users that are not admins, but doesn't not find users with no roles (which I want to find as well).
What simple thing am I missing in my tired state?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用子查询和 NOT IN 运算符
Use a sub-query and the NOT IN operator
怎么样:
这适用于
has_many :through
,似乎对于 HABTM 应该是相同的。How about this:
This works for
has_many :through
, seems like it should be the same for HABTM.我可以
在两个查询中完成我想要的任务,这对于这个项目来说可能很好,但是如果我可以将其实现为单个查询,那就太好了。
I can do
Which accomplishes what I want in two queries, which is probably fine for this project, but if I can get it to a single query it would be nice.