Django Models Part 3 (Model Manager, QuerySet, Lookups)
Model Manager
A Manager is the interface through which we perform ORMs in Django models
By Default, Django automatically adds a Manager with a name of objects. This is the reason we are able to use objects and query to our Models eg: Model.objects.a...
djangotherightway.com5 min read