Hi All I have a model defined as follows: class a< ActiveRecord::Base has_many :a_b_mappings has_many :bs, :through => :a_b_mappings, :uniq => true has_many :a_c_mappings has_many :cs, :through => :a_c_mappings, :uniq=> true has_many :a_d_mappings has_many :ds, :through => :a_d_mappings, :uniq => true ... end I''m trying to find a class method that will enumerate all the classes (:bs,:cs,:ds,...) being associated from class a. I''m at a loss as to what hooks ActiveRecord provides that would enable me to do that. Thanks much Kretch --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---