Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how I can get the has_many associations of a model?

For example if I have this class:

class A < ActiveRecord::Base
  has_many B
  has_many C
end

I would a method like this:

A.get_has_many

that return

[B,C]

Is it possible? Thanks!

share|improve this question

4 Answers

up vote 8 down vote accepted

You should be using ActiveRecord reflections.

Then you can type something like this:

A.reflect_on_all_associations.map { |assoc| assoc.name}

which will return your array

[:B, :C]
share|improve this answer
6  
To get only has_many associations, it is possible to pass a parameter: A.reflect_on_all_associations(:has_many).map(&:name) #=> [:B, :C] – Voyta May 21 '10 at 11:08
is there a way to reflect (i.e. traverse) on an instance variable, where the associations have been eagerly loaded? – Mark Richman Jul 3 '12 at 20:11
Mark Richman: self.class.reflect_on_all_associations... – stebooks Feb 14 at 1:00

For Example you could try :

aux=Array.new
Page.reflections.each { |key, value| aux << key if value.instance_of?(ActiveRecord::Reflection::AssociationReflection) }

Hi Pioz , Have a Nice Day!

share|improve this answer
array_of_array = [A.B, A.C]

This will return the Array having two element which are also an array.

share|improve this answer
sorry, I don't get it – tokland May 3 '12 at 20:26

Found the solutions:

def self.get_macros(macro)
  res = Array.new
  self.reflections.each do |k,v|
    res << k if v.macro == macro.to_sym
  end
  return res
end
share|improve this answer
@nathanvda's answer is much more simple... – tokland May 3 '12 at 20:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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