Exception: Perry::AssociationPreloadNotSupported

Inherits:
AssociationError show all
Defined in:
lib/perry/errors.rb

Overview

Raised when trying to eager load an association that relies on instance level data. class Article < Perry::Base

has_many :comments, :conditions => lambda { |article| ... }

end

Article.recent.includes(:comments) # Raises AssociationPreloadNotSupported