I have a custom finder defined here: http://www.pastie.org/807187 Where search_by_date and search_by_text are named scopes, and eager is an eager-loading named scope defined as: named_scope :eager, :include => [{:container_inventory => {:container => [:size_type, :grade]}}, :company, :truck, :hauler] The association is setup via a HMT (has_many :through): class ContainerDepot << ActiveRecord::Base has_many :container_inventories has_many :container_gate_ins, :through => :container_inventories do end The problem is if the finder is invoked via association nesting from ContainerDepot, it fails with an ActiveRecord::Statement::Invalid, saying that the table has been specified more than once. ContainerDepot.first.container_gate_ins.eager.search(text) => ActiveRecord::StatementInvalid: PGError: ERROR: table name "container_inventories" specified more than once I could correct it by copying the whole custom finder as an association extension: class ContainerDepot << ActiveRecord::Base ... has_many :container_gate_ins, :through => :container_inventories do def search(text) ... custom finder code from ContainerGateIn ... end end ... end it is not very DRY though and introduces a very unnecessary and potentially problematic redundancy, as the custom finder will have to be changed from time to time to accomodate additional search logic. Any ideas on how this could be done better? -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.