SQLAlchemy 使用关联配置与自身的多对多关系
我在配置与模型本身的多对多关系时遇到问题。当我使用正常关系配置,即不使用关联对象的关系配置。
在这种情况下,我必须在多对多表本身中记录一些额外的信息,因此我尝试使用关联对象(PageLink)来实现关系。
这是模型。
class PageLink(Base):
'''
Association table.
'''
__tablename__ = 'page_links'
id = Column(Integer,primary_key=True)
page_from = Column(Integer,ForeignKey('page.id'),primary_key=True)
page_to = Column(Integer,ForeignKey('page.id'),primary_key=True)
extra_col1 = Column(String(256),nullable=False)
class Page(Base):
'''
main table
'''
__tablename__ = 'page'
id = Column(Integer,primary_key=True)
name = Column(String(56),nullable=False)
linked = relationship('PageLinks',backref='parent_page',
primaryjoin=id==PageLink.page_from,
secondaryjoin=id==PageLink.page_to)
这种方法行不通。我尝试删除“secondaryjoin”关键字,但它不起作用。
非常感谢有关此事的任何帮助或建议。
感谢您的阅读。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关联对象模式不是多对多关系的特殊化,而是一对多关系的特殊情况,其中您有一个
left_table
- 多对一 -association_table
- 一对多 -right_table
设置。简而言之,您需要两个关系,其中都不应该有辅助
/辅助连接
。这意味着,要从某个页面
p
访问“to”链接的额外列,您必须执行以下操作:p.linked_to[0].extra_col1
,或者获取实际链接的页面,p.linked_to[0].page_to
顺便说一句,使用自动增量主键或(左/右)外键对作为主键通常是一个好主意协会,但是将两者都包含在主键中几乎没有用。结合这两种想法的替代方案是使用自动增量整数作为主键中的唯一列,并对左/右外键列有一个额外的唯一约束。
The association object pattern is not a sepecialization of the many-to-many relationship, but rather a special case of one-to-many relationships where you have a
left_table
- Many-To-One -association_table
- One-To-Many -right_table
set up. In short, you need two relationships, neither of which should have asecondary
/secondaryjoin
.which means, to access the extra column for the 'to' links from some page
p
, you have to do:p.linked_to[0].extra_col1
, or to get the actual linked page,p.linked_to[0].page_to
As an aside, it's often a great idea to use either an autoincrement primary key or (left/right) foreign key pair as the primary key in associations, but almost never useful to have both in the primary key. An alternative that combines both ideas would be to use an autoincrement integer as the only column in the primary key, and have an additional unique constraint on the left/right foreign key columns.