[sqlalchemy] filter by backref field

2010-05-04 Thread a...@vurve.com
Hi All, This might be a noob question, but I wasn't able to to find the answer combing through the docs and google search. Given the following declarations Base = declarative_base() class A(Base): __tablename__ = 'A' id = Column(Integer, primary_key=True) class B(Base):

Re: [sqlalchemy] filter by backref field

2010-05-04 Thread Conor
On 05/03/2010 10:33 PM, a...@vurve.com wrote: Hi All, This might be a noob question, but I wasn't able to to find the answer combing through the docs and google search. Given the following declarations Base = declarative_base() class A(Base): __tablename__ = 'A' id =