Rails 4 scope on HABTM association
Asked Answered
H

1

5

I'm a rails newbie and I created a scope on a HABTM association, but I still think it looks unnatural, not elegant, so I think there must be a better way of doing it. Could anyone advise me if there is such better way? I've seen other posts where people have the same question (Scope for Self-joining HABTM Association) with no answer...

class User < ActiveRecord::Base
  has_and_belongs_to_many :roles, :join_table => :users_roles
end

class Role < ActiveRecord::Base
  has_and_belongs_to_many :users, :join_table => :users_roles
end

scope :by_role, lambda { |role_name| joins('join users_roles on users.id = users_roles.user_id').
                                    joins('join roles on users_roles.role_id = roles.id').
                                    where('roles.name = ?', role_name) }
Hexavalent answered 26/7, 2015 at 15:22 Comment(1)
read this please: guides.rubyonrails.org/…Alton
A
15

try this. it is more optimized.

 scope :by_role,  ->(role) { joins(:roles).where(roles: { name: role }) }
Ap answered 26/7, 2015 at 17:29 Comment(1)
Thank you, now that looks elegant.Hexavalent

© 2022 - 2024 — McMap. All rights reserved.