Class ReverseManyToOneDescriptor
Accessor to the related objects manager on the reverse side of a many-to-one relation.
Declaration
class ReverseManyToOneDescriptor
source linkDocumentation
In the example::
class Child(Model):
parent = ForeignKey(Parent, related_name='children')
``Parent.children`` is a ``ReverseManyToOneDescriptor`` instance.
Most of the implementation is delegated to a dynamically defined manager
class built by ``create_forward_many_to_many_manager()`` defined below.
Methods
▶ def __get__(self, instance, cls=None) Get the related objects through the reverse relation.
With the example above, when getting ``parent.children``:
- ``self`` is the descriptor managing the ``children`` attribute
- ``instance`` is the ``parent`` instance
- ``cls`` is the ``Parent`` class (unused)
Overrides
This method is overriden in:
▷ def __set__(self, instance, value)
Subclasses
Reexports