Class: ActiveRecord::Reflection::BelongsToReflection
- Inherits:
-
AssociationReflection
- Object
- AbstractReflection
- MacroReflection
- AssociationReflection
- ActiveRecord::Reflection::BelongsToReflection
- Defined in:
- lib/active_record/reflection.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from AssociationReflection
#foreign_type, #parent_reflection, #type
Attributes inherited from MacroReflection
#active_record, #name, #options, #plural_name, #scope
Instance Method Summary collapse
- #association_class ⇒ Object
-
#association_primary_key(klass = nil) ⇒ Object
klass option is necessary to support loading polymorphic associations.
- #belongs_to? ⇒ Boolean
- #join_foreign_key ⇒ Object
- #join_foreign_type ⇒ Object
- #join_primary_key(klass = nil) ⇒ Object
- #macro ⇒ Object
Methods inherited from AssociationReflection
#active_record_primary_key, #add_as_polymorphic_through, #add_as_source, #add_as_through, #association_foreign_key, #association_scope_cache, #check_eager_loadable!, #check_validity!, #clear_association_scope_cache, #collect_join_chain, #collection?, #compute_class, #extensions, #foreign_key, #has_inverse?, #has_one?, #has_scope?, #initialize, #join_id_for, #join_primary_type, #join_table, #nested?, #polymorphic?, #polymorphic_inverse_of, #polymorphic_name, #source_reflection, #through_reflection, #validate?
Methods inherited from MacroReflection
#==, #autosave=, #compute_class, #initialize, #klass, #scope_for
Methods inherited from AbstractReflection
#alias_candidate, #build_association, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #constraints, #counter_cache_column, #counter_must_be_updated_by_has_many?, #has_cached_counter?, #initialize, #inverse_of, #inverse_updates_counter_in_memory?, #inverse_which_updates_counter_cache, #join_scope, #join_scopes, #klass_join_scope, #scopes, #strict_loading?, #strict_loading_violation_message, #table_name, #through_reflection?
Constructor Details
This class inherits a constructor from ActiveRecord::Reflection::AssociationReflection
Instance Method Details
#association_class ⇒ Object
855 856 857 858 859 860 861 |
# File 'lib/active_record/reflection.rb', line 855 def association_class if polymorphic? Associations::BelongsToPolymorphicAssociation else Associations::BelongsToAssociation end end |
#association_primary_key(klass = nil) ⇒ Object
klass option is necessary to support loading polymorphic associations
864 865 866 867 868 869 870 871 872 873 874 875 876 |
# File 'lib/active_record/reflection.rb', line 864 def association_primary_key(klass = nil) if !polymorphic? && ((klass || self.klass).has_query_constraints? || [:query_constraints]) (klass || self.klass).composite_query_constraints_list elsif primary_key = [:primary_key] @association_primary_key ||= -primary_key.to_s elsif (klass || self.klass).composite_primary_key? # If klass has composite primary key of shape [:<tenant_key>, :id], infer primary_key as :id primary_key = (klass || self.klass).primary_key primary_key.include?("id") ? "id" : primary_key else primary_key(klass || self.klass) end end |
#belongs_to? ⇒ Boolean
853 |
# File 'lib/active_record/reflection.rb', line 853 def belongs_to?; true; end |
#join_foreign_key ⇒ Object
882 883 884 |
# File 'lib/active_record/reflection.rb', line 882 def join_foreign_key foreign_key end |
#join_foreign_type ⇒ Object
886 887 888 |
# File 'lib/active_record/reflection.rb', line 886 def join_foreign_type foreign_type end |
#join_primary_key(klass = nil) ⇒ Object
878 879 880 |
# File 'lib/active_record/reflection.rb', line 878 def join_primary_key(klass = nil) polymorphic? ? association_primary_key(klass) : association_primary_key end |
#macro ⇒ Object
851 |
# File 'lib/active_record/reflection.rb', line 851 def macro; :belongs_to; end |