I have 2 models:
class A(Model):
I would expect B.objects give me access to an instance of ClassAManager , but that is not the case.
>>> A.objects <app.managers.ClassAManager object at 0x103f8f290> >>> B.objects <django.db.models.manager.Manager object at 0x103f94790>
Why doesn't B inherit the objects attribute from A ?
source share