I have the following relationships:
class Article < ActiveRecord::Base
has_and_belongs_to_many :required_certs, :class_name=>"Certification"
...
end
class User < AR::B
has_and_belongs_to_many :certifications
...
end
I'd like to be able to find all users that have the same certifications as an article. So if an article had certs A and B, and User had A, B, C, D, that user would be returned. Users with just A or just B would not be. So in essence, something like
User.joins(:certifications).where('certifications.id IN (?)', @article.required_certs.collect{|c| c.id})
Instead of using the IN operator though, I think I'd have to use AND because I only want users who have ALL of the specified certs.
I'm stumped so any help would be much appreciated!
Thanks