Class: ActiveRecord::AssociationRelation
- Defined in:
- lib/active_record/association_relation.rb
Constant Summary
Constants inherited from Relation
Relation::CLAUSE_METHODS, Relation::INVALID_METHODS_FOR_DELETE_ALL, Relation::MULTI_VALUE_METHODS, Relation::SINGLE_VALUE_METHODS, Relation::VALUE_METHODS
Constants included from FinderMethods
Constants included from QueryMethods
QueryMethods::FROZEN_EMPTY_ARRAY, QueryMethods::FROZEN_EMPTY_HASH, QueryMethods::VALID_UNSCOPING_VALUES
Constants included from Batches
Instance Attribute Summary
Attributes inherited from Relation
#klass, #loaded, #predicate_builder, #table
Instance Method Summary collapse
- #==(other) ⇒ Object
- #build(*args, &block) ⇒ Object (also: #new)
- #create(*args, &block) ⇒ Object
- #create!(*args, &block) ⇒ Object
-
#initialize(klass, association) ⇒ AssociationRelation
constructor
A new instance of AssociationRelation.
- #proxy_association ⇒ Object
Methods inherited from Relation
#_exec_scope, #alias_tracker, #any?, #arel_attribute, #blank?, #cache_key, #delete_all, #destroy_all, #eager_loading?, #empty?, #empty_scope?, #encode_with, #explain, #find_or_create_by, #find_or_create_by!, #find_or_initialize_by, #first_or_create, #first_or_create!, #first_or_initialize, #has_limit_or_offset?, #initialize_copy, #inspect, #joined_includes_values, #load, #many?, #none?, #one?, #pretty_print, #records, #reload, #reset, #scope_for_create, #scoping, #size, #to_ary, #to_sql, #update, #update_all, #values, #where_values_hash
Methods included from FinderMethods
#exists?, #fifth, #fifth!, #find, #find_by, #find_by!, #first, #first!, #forty_two, #forty_two!, #fourth, #fourth!, #last, #last!, #raise_record_not_found_exception!, #second, #second!, #second_to_last, #second_to_last!, #take, #take!, #third, #third!, #third_to_last, #third_to_last!
Methods included from Calculations
#average, #calculate, #count, #ids, #maximum, #minimum, #pluck, #sum
Methods included from SpawnMethods
#except, #merge, #merge!, #only, #spawn
Methods included from QueryMethods
#_select!, #arel, #create_with, #create_with!, #distinct, #distinct!, #eager_load, #eager_load!, #extending, #extending!, #from, #from!, #get_value, #group, #group!, #having, #having!, #includes, #includes!, #joins, #joins!, #left_outer_joins, #left_outer_joins!, #limit, #limit!, #lock, #lock!, #none, #none!, #offset, #offset!, #or, #or!, #order, #order!, #preload, #preload!, #readonly, #readonly!, #references, #references!, #reorder, #reorder!, #reverse_order, #reverse_order!, #rewhere, #select, #skip_query_cache!, #unscope, #unscope!, #where, #where!
Methods included from Batches
#find_each, #find_in_batches, #in_batches
Methods included from Explain
#collecting_queries_for_explain, #exec_explain
Constructor Details
#initialize(klass, association) ⇒ AssociationRelation
Returns a new instance of AssociationRelation.
5 6 7 8 |
# File 'lib/active_record/association_relation.rb', line 5 def initialize(klass, association) super(klass) @association = association end |
Instance Method Details
#==(other) ⇒ Object
14 15 16 |
# File 'lib/active_record/association_relation.rb', line 14 def ==(other) other == records end |
#build(*args, &block) ⇒ Object Also known as: new
18 19 20 |
# File 'lib/active_record/association_relation.rb', line 18 def build(*args, &block) scoping { @association.build(*args, &block) } end |
#create(*args, &block) ⇒ Object
23 24 25 |
# File 'lib/active_record/association_relation.rb', line 23 def create(*args, &block) scoping { @association.create(*args, &block) } end |
#create!(*args, &block) ⇒ Object
27 28 29 |
# File 'lib/active_record/association_relation.rb', line 27 def create!(*args, &block) scoping { @association.create!(*args, &block) } end |
#proxy_association ⇒ Object
10 11 12 |
# File 'lib/active_record/association_relation.rb', line 10 def proxy_association @association end |