vote up 0 vote down star

Hi,

I have the next models

class ModelB(models.Model):
    name = models.CharField(max_length)
class ModelA(models.Model)
    fk1 = models.ForeignKey(ModelB)
    fk2 = models.ForeignKey(ModelB)

And i have a lot of data, i need get the objects of ModelA grouping by ModelB and the count of ModelB, I try something like this:

a = Congresista.objects.filter(profesion=3).values('partido_politico','partido_politico__nombre').annotate(Count('partido_politico'))

when i do this:

a.count()

the result is 28 (that is correct), but when i do another thing with a like:

for c in a:
    print c

a is a list of 118 objects (that is not what i want)

i try this: http://www.eflorenzano.com/blog/post/secrets-django-orm/

and another solutions i found in stackoverflow, but nothing works, I can't make the query in plain sql, distinct() don't works, some idea?

flag
Could you post your actual models? – celopes Nov 6 at 3:31
Then just say "for c in a.count()"? Can you tell us what modelA and modelB are? Too hard to know what you're trying do when its all so abstract. – John Mee Nov 6 at 10:34

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.