I’m working with an older version of Rails and ActiveRecord that does not have the :primary_key option in has_many relationships of more recent ActiveRecord versions and unfortunately I don’t get to control when we upgrade. Is there any way to hack this solution via :conditions or :finder_sql options?
I’m working with an older version of Rails and ActiveRecord that does not have
Share
It should be possible using
:finder_sqle.g.Note the use of single quotes around the query so that
#{primary_key}is not expanded at the time when the association is declared.