Class: OceanDynamo::Associations::CollectionAssociation
- Inherits:
-
Association
- Object
- Association
- OceanDynamo::Associations::CollectionAssociation
- Defined in:
- lib/ocean-dynamo/associations/collection_association.rb
Overview
CollectionAssociation is an abstract class that provides common stuff to ease the implementation of association proxies that represent collections. See the class hierarchy in AssociationProxy.
Associations
Association
CollectionAssociation:
HasAndBelongsToManyAssociation => has_and_belongs_to_many
HasManyAssociation => has_many
HasManyThroughAssociation + ThroughAssociation => has_many :through
CollectionAssociation class provides common methods to the collections defined by has_and_belongs_to_many
, has_many
or has_many
with :through association option.
You need to be careful with assumptions regarding the target: The proxy does not fetch records from the database until it needs them, but new ones created with build
are added to the target. So, the target may be non-empty and still lack children waiting to be read from the database. If you look directly to the database you cannot assume that’s the entire collection because new records may have been added to the target, etc.
If you need to work on all current children, new and existing records, load_target
and the loaded
flag are your friends.
Instance Attribute Summary
Attributes inherited from Association
Instance Method Summary collapse
-
#reset ⇒ Object
Resets the collection to the empty array.
Methods inherited from Association
#initialize, #klass, #load_target, #loaded!, #loaded?, #reload, #stale_target?
Constructor Details
This class inherits a constructor from OceanDynamo::Associations::Association
Instance Method Details
#reset ⇒ Object
Resets the collection to the empty array.
35 36 37 38 |
# File 'lib/ocean-dynamo/associations/collection_association.rb', line 35 def reset super @target = [] end |