Re: Obtaining objects from a many-to-many relationship

2012-06-02 Thread Thomas Lockhart
On 12-06-02 1:15 AM, Kurtis Mullins wrote: Have you tried b.haveone.all()? Yes. Simplemindedly I wanted to try B.haveone.all() If I understand your suggestion, it would require iterating on instances of B to find all instances of A mentioned in B. that would be something like for b in

Re: Obtaining objects from a many-to-many relationship

2012-06-02 Thread Kurtis Mullins
https://docs.djangoproject.com/en/dev/topics/db/queries/#many-to-many-relationshipsfor more information. (Unless I read your question wrong :)) On Sat, Jun 2, 2012 at 4:15 AM, Kurtis Mullins wrote: > Have you tried b.haveone.all()? > > > On Sat, Jun 2, 2012 at 12:36 AM,

Re: Obtaining objects from a many-to-many relationship

2012-06-02 Thread Kurtis Mullins
Have you tried b.haveone.all()? On Sat, Jun 2, 2012 at 12:36 AM, Thomas Lockhart wrote: > I've got two models with one having a many-to-many relationship with the > other: > > class A(models.Model): > name = models.CharField("name") > > class B(models.Model): > haveone

Obtaining objects from a many-to-many relationship

2012-06-01 Thread Thomas Lockhart
I've got two models with one having a many-to-many relationship with the other: class A(models.Model): name = models.CharField("name") class B(models.Model): haveone = models.ManyToManyField(A) What is the idiom for getting all instances of A which are referenced in B? I found this