module Sequel::Model::Associations::AssociationDatasetMethods
This module contains methods added to all association datasets
Public Instance Methods
Source
# File lib/sequel/model/associations.rb 1532 def association_reflection 1533 @opts[:association_reflection] 1534 end
The association reflection related to the association dataset
Source
# File lib/sequel/model/associations.rb 1527 def model_object 1528 @opts[:model_object] 1529 end
The model object that created the association dataset
Private Instance Methods
Source
# File lib/sequel/model/associations.rb 1538 def non_sql_option?(key) 1539 super || key == :model_object || key == :association_reflection 1540 end
Calls superclass method