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

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

Overview

Binding class for has_one relations.

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 relation. 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



24
25
26
27
28
# File 'build/mongoid-7.0/lib/mongoid/association/referenced/has_one/binding.rb', line 24

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



38
39
40
41
42
# File 'build/mongoid-7.0/lib/mongoid/association/referenced/has_one/binding.rb', line 38

def unbind_one
  binding do
    unbind_from_relational_parent(_target)
  end
end