Exception: RPCMapper::AssociationPreloadNotSupported

Inherits:
RPCMapperError
  • Object
show all
Defined in:
lib/rpc_mapper/errors.rb

Overview

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

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

end

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