I have a design question on django.
Can someone explain to me why the Django ORM
'get' doesn't return a queryset
?
To the best of my understanding, a queryset
should/is the result of a db query. With that logic, isn't a get
query a queryset
?
Also, from my research towards this question, I found out the get
query calls the model manager
while the queryset
doesn't.
Is there a reasoning behind all of this?