當嘗試使用 JOIN 急切載入多型關聯時,會發生此錯誤。只有使用 ActiveRecord::Relation#preload 才能急切載入多型關聯。
來源:顯示 | on GitHub
# File activerecord/lib/active_record/associations/errors.rb, line 244 def initialize(reflection = nil) if reflection super("Cannot eagerly load the polymorphic association #{reflection.name.inspect}") else super("Eager load polymorphic error.") end end