I\'m using SQLAlchemy 0.5rc, and I\'d like to add an automatic filter to a relation, so that every time it tries to fetch records for that relation, it ignores the \"remote\" on
I'm only currently developing agains 0.4.something, but here's how I'd suggest it:
db.query(Object).filter(Object.first==value).filter(Object.second==False).all()
I think that's what you are trying to do, right?
(Note: written in a web browser, not real code!)