Flowdock
method

check_eager_loadable!

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: ActiveRecord::Reflection::AssociationReflection
check_eager_loadable!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/reflection.rb, line 490
      def check_eager_loadable!
        return unless scope

        unless scope.arity == 0
          raise ArgumentError,             The association scope '#{name}' is instance dependent (the scope            block takes an argument). Eager loading instance dependent scopes            is not supported..squish
        end
      end
Register or log in to add new notes.