vote up 8 vote down star
3

I want to, when given a particular model, return all the related models it is associated with. For example:

class Dog < ActiveRecord::Base
  has_many :bones
  belongs_to :master
end

d = Dog.first
d.associations #<== should return [Bone, Master]

Is there a way to do this already without having to roll my own? Failing that, any suggestions for the best way to do this?

flag

a model's relationships? People magazine keeps up with that stuff pretty well! JK :) – Dana Nov 3 '08 at 18:59

1 Answer

vote up 10 vote down check
Dog.reflect_on_all_associations

http://api.rubyonrails.org/classes/ActiveRecord/Reflection/ClassMethods.html#M001405

You wouldn't do this on an instance but on the model itself.

link|flag
Great, couldn't find that for the life of me earlier. Just what I needed, thanks! – PJ Nov 3 '08 at 18:42

Your Answer

Get an OpenID
or

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