method
check_eager_loadable!
v7.1.3.2 -
Show latest stable
- Class:
ActiveRecord::Reflection::AssociationReflection
check_eager_loadable!()public
No documentation available.
# File activerecord/lib/active_record/reflection.rb, line 580
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