search for: fieldattribute

Displaying 1 result from an estimated 1 matches for "fieldattribute".

2006 Jul 25
7
Question about Associations and Eager Loading
...s Where Field Instances and Field Attributes both belong to Field, and have many Field Attribute Instances. So the kicker here is that Field Attribute Instances are dependent on both Field Instances and Field Attributes. I need to get an array that looks like the following: Fields.FieldInstances.FieldAttributes.FieldAttributeInstances Right now, I''m doing something like the following: Field.find(:all, :include => { :field_instances => { :field_attributes => { :field_attribute_instances } } }) which gives me the order I want. However, I see no way to get field_attribute_instances depe...