Re: [sqlalchemy] contains_eager and order_by

2013-10-08 Thread Julien Cigar
On Mon, Oct 07, 2013 at 11:28:21AM -0400, Michael Bayer wrote: On Oct 7, 2013, at 6:06 AM, Julien Cigar jci...@ulb.ac.be wrote: Hello, I have the following query: entity = orm.with_polymorphic( Content, [Event, News] ) q = db.Session.query(entity) The Event class

Re: [sqlalchemy] contains_eager and order_by

2013-10-07 Thread Michael Bayer
On Oct 7, 2013, at 6:06 AM, Julien Cigar jci...@ulb.ac.be wrote: Hello, I have the following query: entity = orm.with_polymorphic( Content, [Event, News] ) q = db.Session.query(entity) The Event class has a country property: orm.mapper(Event, table['event'], inherits =