Django ORM Under the Hood - Iterables

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 :raised_hands:

5 Likes

Thanks @RadoRado , very good post.

2 Likes

I enjoyed the dive into part of the ORM. It was well written and educational. Great work!

1 Like