这是我的情景.我有一个可以与一个或多个部门相关联的客户模型.这些分区静态存储在数据库中,并且可以与一个或多个客户相关联,因此需要我建模多对多关系.有一个REST API路由,形式为/ api / v1 / customers / 123 / division,其中我以分区id列表的形式POST JSON数据,{‘division_ids’:[1,2,3,4]}.在这种情况下(实际使用可能相当于20个分区ID,我将需要发出一个查询来获取客户(id 123)以及4个查询以获取分区.
既然我知道要插入的分区的id,我可以强制sqlAlchemy只使用id而不是获取对象吗?
sqlAlchemy可以做类似的事吗?
解决方法
A key feature to enable management of a large collection is the so-called “dynamic” relationship. This is an optional form of relationship() which returns a Query object in place of a collection when accessed. filter() criterion may be applied as well as limits and offsets,either explicitly or via array slices:
示例表:
class Parent(Base): __tablename__ = 'parent' id = Column(Integer,primary_key=True) children = relationship("Child",lazy="dynamic") class Child(Base): __tablename__ = 'child' id = Column(Integer,primary_key=True) parent_id = Column(Integer,ForeignKey('parent.id'))
加载Parent对象时,不会加载子对象;相反,将在其位置加载Query对象,如果需要,可以使用它来访问子对象.
p = session.query(Parent).first() # children will not be loaded here print(type(p.children)) # <class 'sqlalchemy.orm.dynamic.AppenderQuery'> all_children = p.children.all() # conduct a query on the children query object print(all_children) # [<__main__.Child object at 0x10ba3f908>,<__main__.Child object at 0x10ba3f978>]
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。