Class: ActiveRecord::Reflection::RuntimeReflection
Overview
Instance Method Summary
collapse
#alias_candidate, #build_association, #build_scope, #chain, #check_validity_of_inverse!, #class_name, #constraints, #counter_cache_column, #counter_must_be_updated_by_has_many?, #get_join_keys, #has_cached_counter?, #inverse_of, #inverse_updates_counter_in_memory?, #inverse_which_updates_counter_cache, #join_foreign_key, #join_keys, #join_primary_key, #join_scope, #join_scopes, #klass_join_scope, #scopes, #table_name, #through_reflection?
Constructor Details
#initialize(reflection, association) ⇒ RuntimeReflection
1024
1025
1026
1027
|
# File 'lib/active_record/reflection.rb', line 1024
def initialize(reflection, association)
@reflection = reflection
@association = association
end
|
Instance Method Details
#aliased_table ⇒ Object
1033
1034
1035
|
# File 'lib/active_record/reflection.rb', line 1033
def aliased_table
@aliased_table ||= Arel::Table.new(table_name, type_caster: klass.type_caster)
end
|
#all_includes ⇒ Object
1037
|
# File 'lib/active_record/reflection.rb', line 1037
def all_includes; yield; end
|
#klass ⇒ Object
1029
1030
1031
|
# File 'lib/active_record/reflection.rb', line 1029
def klass
@association.klass
end
|