vote up 1 vote down star
def DogOwner < ActiveRecord::Base
  has_many :dogs
  has_many :breeds, :through => dogs

  def self.with_breeds(breeds)
    # returns a list of DogOwner records who own all breeds in the list

    # ex: DogOwner.with_breeds("Dalmation","Poodle")
    # or it could be DogOwner.with_breed_ids(1,3) which would only require
    # a join down to the dogs table - I could live with that.

    # do i need to hand generate SQL with n levels of subselects?
    # or is there something in ActiveRecord that handles this magically?
  end
end
flag

75% accept rate

1 Answer

vote up 1 vote down check

I figured out a way using a list of child ids:

DogOwner.all(:joins => :dogs, 
             :conditions => "dogs.breed_id in (#{list_of_breeds})", 
             :group => 'dog_owners.id', 
             :having => "count(*) = #{list_of_breeds.size}")

Credit: Ethan Vizitei's Blog Post inspired the solution.

link|flag
1  
@ryw, watch out for sql injections there ... sometimes I think certain things are just easier in pure SQL – Sam Saffron Sep 30 at 23:05
Good point Sam - in my real use case the list is all generated from system data, no user input - and not as fun of a domain :) – ryw Oct 1 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.