try search__questions.id the __ spans the many to many relationship
On Mar 10, 4:38 pm, Laereom <jamesdbo...@gmail.com> wrote: > I have two models, we'll call them 'Question' and 'Search'. > > Search has a many to many field called 'questions' which contain, > naturally, a set of questions. > > I want to retrieve a Question which is associated with a particular > Search through that many to many field. > > It seemed straightforward -- I wrote something like this: > > search = Search.objects.get(myCriteria) > question = Question.objects.filter(id=search.questions.id) > > However, I'm getting an AttributeError: > > 'ManyRelatedManager' object has no attribute 'id' > > Any advice? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.