method

get_records

rails latest stable - Class: ActiveRecord::Associations::CollectionAssociation

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v5.0.0.1) is shown here.

get_records()
private

No documentation available.

# File activerecord/lib/active_record/associations/collection_association.rb, line 457
      def get_records
        return scope.to_a if skip_statement_cache?

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

        binds = AssociationScope.get_bind_values(owner, reflection.chain)
        sc.execute binds, klass, klass.connection
      end