vote up 0 vote down star

as per title.

flag

66% accept rate

1 Answer

vote up 7 vote down

Set the related_name attribute.

If object Egg has a ManyToManyField pointing to Spam, and you set the related name to egg_set, you can access the eggs via Spam.egg_set.all() (or use filter() to get a specific egg as shown below).

So to check if the Spam object my_spam has the Egg with the ID 42, you could do something like:

if my_spam.egg_set.filter(pk=42):
    fry_bacon()
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.