method

find_target

find_target()
private

No documentation available.

# File activerecord/lib/active_record/associations/association.rb, line 199
        def find_target
          scope = self.scope
          return scope.to_a if skip_statement_cache?(scope)

          conn = klass.connection
          sc = reflection.association_scope_cache(conn, owner) do |params|
            as = AssociationScope.create { params.bind }
            target_scope.merge!(as.scope(self))
          end

          binds = AssociationScope.get_bind_values(owner, reflection.chain)
          sc.execute(binds, conn) { |record| set_inverse_instance(record) } || []
        end