Class ForwardOneToOneDescriptor

Accessor to the related object on the forward side of a one-to-one relation.

Declaration

class ForwardOneToOneDescriptor(ForwardManyToOneDescriptor)
source link

Documentation

In the example::

    class Restaurant(Model):
        place = OneToOneField(Place, related_name='restaurant')

``Restaurant.place`` is a ``ForwardOneToOneDescriptor`` instance.

Methods

Inherited methods

Reexports