0
votes
2answers
46 views
+150
Filtering the Aggregate in the Django ORM
I have a function that looks like this:
def post_count(self):
return self.thread_set.aggregate(num_posts=Count('post'))['num_posts']
I only want to count posts that have their status marked …
