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?
