method

through_reflection

rails latest stable - Class: ActiveRecord::Associations::ThroughAssociation
through_reflection()
private

No documentation available.

# File activerecord/lib/active_record/associations/through_association.rb, line 14
        def through_reflection
          @through_reflection ||= begin
            refl = reflection.through_reflection

            while refl.through_reflection?
              refl = refl.through_reflection
            end

            refl
          end
        end