[sqlalchemy] Re: Child to parent - Uni-directional relationships - Is that supported ?

2007-04-13 Thread Arun Kumar PG
cool thx. On 4/13/07, svilen <[EMAIL PROTECTED]> wrote: > > > > > I have a Parent - Child (1:N) relationship between Class and Exam > > table. > > > > Class -> Exam > > 1 :N > > > > Now since a "Class" could have millions of "Exam" I don't want have > > an attribute on Class called exa

[sqlalchemy] Re: Child to parent - Uni-directional relationships - Is that supported ?

2007-04-13 Thread svilen
> I have a Parent - Child (1:N) relationship between Class and Exam > table. > > Class -> Exam > 1 :N > > Now since a "Class" could have millions of "Exam" I don't want have > an attribute on Class called exams. Instead I only want an > attribute on "Exam" to the parent "Class". > > C