[sqlalchemy] Re: filtering with an association_proxy

2009-11-18 Thread scott
Great, thanks, I found a ticket that was already open for this and added to it. http://www.sqlalchemy.org/trac/ticket/1372 On Nov 17, 7:23 am, Michael Bayer mike...@zzzcomputing.com wrote: scott wrote: Is there a way to filter a query involving an association_proxy? For example, say I

[sqlalchemy] Re: filtering with an association_proxy

2009-11-17 Thread Michael Bayer
scott wrote: Is there a way to filter a query involving an association_proxy? For example, say I have a one to many relation between Pages and Tags, and an association_proxy like this to let me represent tags as a list of strings. tag_objects = orm.relation('Tag') tags =