class documentation

class BaseManager:

View In Hierarchy

Undocumented

Class Method from​_queryset Undocumented
Class Method ​_get​_queryset​_methods Undocumented
Method __class​_getitem__ Undocumented
Method __eq__ Undocumented
Method __hash__ Undocumented
Method __init__ Undocumented
Method __new__ Undocumented
Method __str__ Return "app_label.model_label.manager_name".
Method ​_set​_creation​_counter Set the creation counter value for this instance and increment the class-level copy.
Method all Undocumented
Method check Undocumented
Method contribute​_to​_class Undocumented
Method db​_manager Undocumented
Method deconstruct Return a 5-tuple of the form (as_manager (True), manager_class, queryset_class, args, kwargs).
Method get​_queryset Return a new QuerySet object. Subclasses can override this method to customize the behavior of the Manager.
Class Variable auto​_created Undocumented
Class Variable use​_in​_migrations Undocumented
Instance Variable ​_db Undocumented
Instance Variable ​_hints Undocumented
Instance Variable creation​_counter Undocumented
Instance Variable model Undocumented
Instance Variable name Undocumented
Property db Undocumented
@classmethod
def from_queryset(cls, queryset_class, class_name=None):

Undocumented

@classmethod
def _get_queryset_methods(cls, queryset_class):

Undocumented

def __class_getitem__(cls, *args, **kwargs):

Undocumented

def __eq__(self, other):

Undocumented

def __hash__(self):

Undocumented

def __init__(self):

Undocumented

def __new__(cls, *args, **kwargs):

Undocumented

def __str__(self):
Return "app_label.model_label.manager_name".
def _set_creation_counter(self):
Set the creation counter value for this instance and increment the class-level copy.
def all(self):

Undocumented

def check(self, **kwargs):

Undocumented

def contribute_to_class(self, cls, name):

Undocumented

def db_manager(self, using=None, hints=None):

Undocumented

def deconstruct(self):

Return a 5-tuple of the form (as_manager (True), manager_class, queryset_class, args, kwargs).

Raise a ValueError if the manager is dynamically generated.

def get_queryset(self):
Return a new QuerySet object. Subclasses can override this method to customize the behavior of the Manager.
auto_created: bool =

Undocumented

use_in_migrations: bool =

Undocumented

_db =

Undocumented

_hints: dict =

Undocumented

creation_counter =

Undocumented

model =

Undocumented

name =

Undocumented

@property
db =

Undocumented