I was reading Django Documentation and I got across this line.
Managers are only accessible via model classes, not the model
instances.
What is the meaning of this line? I am not able to comprehend this. I know what are Model classes ( Represents the Table in Database if I am not wrong). Are the model instances same as what we call "objects" sometimes?
What does this line mean actually? IS this some OOP concept or just Django?