Re: [sqlalchemy] Explicit Column Combination vs Implicit?

2019-08-21 Thread Michael P. McDonnell
Okay - I gotcha! That makes perfect sense too. It also means that my (eventual) work around worked: class Round(Base): __table__ = round_join game_id = column_property( round_table.c.game_id, game_table.c.id, game_language_table.c.game_id) On Wed, Aug 21, 2019 at 2:21 PM Mike Baye

Re: [sqlalchemy] Explicit Column Combination vs Implicit?

2019-08-21 Thread Mike Bayer
On Wed, Aug 21, 2019, at 1:46 PM, Michael P. McDonnell wrote: > Hey team - > > I've went through the docs, and likely because I'm a bit of a hack - I'm > finding it hard to find my answers (because I'm not sure what I'm > specifically looking to "do" other than "make it work") > > So I have

[sqlalchemy] Explicit Column Combination vs Implicit?

2019-08-21 Thread Michael P. McDonnell
Hey team - I've went through the docs, and likely because I'm a bit of a hack - I'm finding it hard to find my answers (because I'm not sure what I'm specifically looking to "do" other than "make it work") So I have the following situation: I have a GAME table (with a corresponding LANGUAGE table