[sqlalchemy] Nested joins duplication

2010-08-10 Thread Michael Brickenstein
Hi! SQLAlchemy is really awesome (I really love it) and I am still working on the RUM web frontend for it. I have the problem, that I would like to make some nested join: query=session.query(Address) query=query.join(User, Address.user) query=query.join(Group, User.group) Is it legal to the

Re: [sqlalchemy] Nested joins duplication

2010-08-10 Thread Michael Bayer
On Aug 10, 2010, at 10:13 AM, Michael Brickenstein wrote: Hi! SQLAlchemy is really awesome (I really love it) and I am still working on the RUM web frontend for it. I have the problem, that I would like to make some nested join: query=session.query(Address) query=query.join(User,