Hi all,
I have a model that loads a many relationship (User has many addresses)
class User(Base):
__table__ = Base.metadata.tables['user']
addresses = relationship("Address", backref="user")
For one of our queries I want to ensure that the relationship is not fetched.
Is this possible?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.