Class: Mongoid::Association::Referenced::HasOne::Binding

Inherits:
Object
  • Object
show all
Includes:
Bindable
Defined in:
build/mongoid-7.3/lib/mongoid/association/referenced/has_one/binding.rb

Overview

Binding class for has_one associations.

Since:

  • 7.0

Instance Attribute Summary

Attributes included from Bindable

#_association, #_base, #_target

Instance Method Summary collapse

Methods included from Bindable

#binding, #initialize

Instance Method Details

#bind_oneObject

Binds the base object to the inverse of the association. This is so we are referenced to the actual objects themselves on both sides.

This case sets the association metadata on the inverse object as well as the document itself.

Examples:

Bind the document.

person.game.bind(:continue => true)
person.game = Game.new

Since:

  • 2.0.0.rc.1



26
27
28
29
30
# File 'build/mongoid-7.3/lib/mongoid/association/referenced/has_one/binding.rb', line 26

def bind_one
  binding do
    bind_from_relational_parent(_target)
  end
end

#unbind_oneObject

Unbinds the base object and the inverse, caused by setting the reference to nil.

Examples:

Unbind the document.

person.game.unbind(:continue => true)
person.game = nil

Since:

  • 2.0.0.rc.1



40
41
42
43
44
# File 'build/mongoid-7.3/lib/mongoid/association/referenced/has_one/binding.rb', line 40

def unbind_one
  binding do
    unbind_from_relational_parent(_target)
  end
end