Exception: RPCMapper::AssociationPreloadNotSupported
- Inherits:
-
AssociationError
- Object
- StandardError
- RPCMapperError
- AssociationError
- RPCMapper::AssociationPreloadNotSupported
- 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