Re: Nested Relationships between tables in Django Database API

2006-12-09 Thread Russell Keith-Magee
On 12/10/06, Darin Lee <[EMAIL PROTECTED]> wrote: > In the console, if I populate the Contest, the instance produces a > "category_set" method/property (as expected and documented). However, > if you "dir(c.category_set)" there is no "finalist_set" method/ > property in the category_set's namespac

Nested Relationships between tables in Django Database API

2006-12-09 Thread Darin Lee
Hi All, Just curious, does the Django Database API support nested relationships more than one level deep? It's starting to look like it doesn't... for example, let's say I have three tables: Contest, Categories, and Finalists; related as such: Contest, Category foreign keys to Contest, Fi