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!
|
how I can get the has_many associations of a model? For example if I have this class:
I would a method like this:
that return
Is it possible? Thanks! |
||||
|
|
|
You should be using ActiveRecord reflections. Then you can type something like this:
which will return your array
|
|||||||||
|
|
For Example you could try :
Hi Pioz , Have a Nice Day! |
|||
|
|
This will return the Array having two element which are also an array. |
|||
|
|
|
Found the solutions:
|
|||
|
|