标签: ruby-on-rails ruby-on-rails-4 scope polymorphic-associations eager-loading
我的图库模型的默认范围为includes(:galleriable)
includes(:galleriable)
当我做的时候
OtherModel.unscoped.includes(:linkable)...
当linkable可以是Gallery模型时,它包含:galleriable,我想避免使用它,因为我不会使用它。
:galleriable
有没有办法解除这种急切加载的关联?