Hello folks,
I want to share an interesting exploration around how Django ORM’s QuerySet
methods, like .all()
, .values()
and .values_list()
work under the hood. The focus here are the so-called Iterables
.
Kudos to Ivaylo Donchev, the author of the article - Django ORM Under the Hood - Iterables
The article also includes an overview, around the basic principles of a QuerySet
.
Happy reading