On 11/29/06, conrad22 <[EMAIL PROTECTED]> wrote:

> eg. I have the following error appearing, instead of the object:
>
> django.db.models.fields.related.ManyRelatedManager object


What you're missing is the 'all()' at the end.

Your example is a little confusing - the model Category should have an
attribute organisation that relates to Organisation, not an attribute
category that relates to Organisation. However, using your models as
written:

mycategory.category

will return a ManyRelatedManager object.

mycategory.category.all()

will return the list of instances. You could also filter the results:

mycategory.category.filter(product__startswith='foo')

would return all the related Organisations that have a product attribute
starting with 'foo'.

Yours,
Russ Magee %-)


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to