Created
August 8, 2014 23:31
-
-
Save cansadadeserfeliz/866f5b0fa2c2ea526cff to your computer and use it in GitHub Desktop.
Django: QuerySets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import chain | |
for item in chain(qs1, qs2, qs3): | |
# ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
res = qs1 | qs2 | qs3 | |
res = res.distinct() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment