tags:

views:

16

answers:

1

I've got a query...

packages = Package.objects.annotate(bid_count=Count('items__bids'))

Which is supposed to give me a list of packages with the number of bids each. It works great if there's only one item in the package, but if there's more it double counts.

Each package consists of 1 or more items. Each bid is placed on 1 or more items within a package. I want to retrieve the number of bids placed on the items within that package.

If there is 1 bid placed on 2 items within a package, presently this will count as 2, I want it to return 1.

I tried Count('items__bids__distinct') but that didn't work. How can I do this?

+1  A: 

Have you tried something like :

Package.objects.values('id', 'items__bids').distinct().annotate(Count('items__bids'))

I am not certain that this exactly would work, but I am pretty sure that you can solve your problem with something similar...

sebpiq
I'm not sure that that would work... its the bids that need to be distinct, not the packages... but I can try it.
Mark
I guess in that case what would be distinct would be the couple (bid, package)
sebpiq