Surprising that I could not find a way to make a group by query.
I have a query set qs
and I am trying to group by some_prop.val
, considering qs
is excluding entries where some_prop
is None
.
Let's say the values are [1, 2, 3]
, then I would be after a result like this:
{1: entries1, 2: entries2, 3: entries3}
Does the Django ORM provide any feature to group results like this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…