OK I think I know why, and is this correct please? class Company
class Person class Purchase Person is related to Company by a FK in Person called company. Class Purchase is related to Person by a FK in Person called FK - not company. Therefore is it correct that Django's ORM only pursues company relations and not relations of related records? If that is the case, is there a way of making it do this? I want to left join both person on company_id to company, and purchase left join to person on person_id -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

