[SQLObject] Overloading related joins and multiple joins
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: Victor Ng <vn...@sy...> - 2004-02-26 17:49:03
|
If I have two classes like this: class Foo(SQLObject): bars = RelatedJoin('Bar') class Bar(SQLObject): foos = RelatedJoin('Foo') Is there a way for me to overload the addFoo and addBar method for Bar and Foo? vic |