class documentation

class BaseManager: (source)

View In Hierarchy

Undocumented

Class Method from_queryset 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 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 creation_counter Undocumented
Instance Variable model Undocumented
Instance Variable name Undocumented
Property db Undocumented
Class Method _get_queryset_methods Undocumented
Method _set_creation_counter Set the creation counter value for this instance and increment the class-level copy.
Instance Variable _db Undocumented
Instance Variable _hints Undocumented
@classmethod
def from_queryset(cls, queryset_class, class_name=None): (source)

Undocumented

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

Undocumented

def __eq__(self, other): (source)

Undocumented

def __hash__(self): (source)

Undocumented

def __init__(self): (source)

Undocumented

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

Undocumented

def __str__(self): (source)

Return "app_label.model_label.manager_name".

def all(self): (source)

Undocumented

def check(self, **kwargs): (source)

Undocumented

def contribute_to_class(self, cls, name): (source)

Undocumented

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

Undocumented

def deconstruct(self): (source)

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): (source)

Return a new QuerySet object. Subclasses can override this method to customize the behavior of the Manager.

auto_created: bool = (source)

Undocumented

use_in_migrations: bool = (source)

Undocumented

creation_counter = (source)

Undocumented

Undocumented

Undocumented

Undocumented

@classmethod
def _get_queryset_methods(cls, queryset_class): (source)

Undocumented

def _set_creation_counter(self): (source)

Set the creation counter value for this instance and increment the class-level copy.

Undocumented

Undocumented