简体   繁体   English

SQLAlchemy将一个映射的类中的多个外键映射到同一主键

[英]SQLAlchemy multiple foreign keys in one mapped class to the same primary key

Am trying to setup a postgresql table that has two foreign keys that point to the same primary key in another table. 我正在尝试建立一个PostgreSQL表,该表具有两个指向另一个表中相同主键的外键。

When I run the script I get the error 运行脚本时出现错误

sqlalchemy.exc.AmbiguousForeignKeysError: Could not determine join condition between parent/child tables on relationship Company.stakeholder - there are multiple foreign key paths linking the tables. sqlalchemy.exc.AmbiguousForeignKeysError:无法确定关系Company.stakeholder的父/子表之间的联接条件-有多个链接表的外键路径。 Specify the 'foreign_keys' argument, providing a list of those columns which should be counted as containing a foreign key reference to the parent table. 指定“ foreign_keys”参数,提供这些列的列表,这些列应被视为包含对父表的外键引用。

That is the exact error in the SQLAlchemy Documentation yet when I replicate what they have offered as a solution the error doesn't go away. 那是SQLAlchemy文档中的确切错误,但是当我复制他们作为解决方案提供的内容时,该错误不会消失。 What could I be doing wrong? 我可能做错了什么?

#The business case here is that a company can be a stakeholder in another company.
class Company(Base):
    __tablename__ = 'company'
    id = Column(Integer, primary_key=True)
    name = Column(String(50), nullable=False)

class Stakeholder(Base):
    __tablename__ = 'stakeholder'
    id = Column(Integer, primary_key=True)
    company_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    stakeholder_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    company = relationship("Company", foreign_keys='company_id')
    stakeholder = relationship("Company", foreign_keys='stakeholder_id')

I have seen similar questions here but some of the answers recommend one uses a primaryjoin yet in the documentation it states that you don't need the primaryjoin in this situation. 我在这里看到了类似的问题,但一些问题的答案推荐一个使用primaryjoin但在文档中就指出,你不需要primaryjoin在这种情况下。

Tried removing quotes from the foreign_keys and making them a list. 试图从foreign_keys中删除引号并将它们制成列表。 From official documentation on Relationship Configuration: Handling Multiple Join Paths 来自有关Relationship Configuration: Handling Multiple Join Paths官方文档Relationship Configuration: Handling Multiple Join Paths

Changed in version 0.8: relationship() can resolve ambiguity between foreign key targets on the basis of the foreign_keys argument alone; 在版本0.8中进行了更改: relationship()可以仅基于foreign_keys参数解决外键目标之间的歧义; the primaryjoin argument is no longer needed in this situation. 在这种情况下,不再需要primaryjoin参数。


Self-contained code below works with sqlalchemy>=0.9 : 下面的自包含代码适用于sqlalchemy>=0.9

from sqlalchemy import create_engine, Column, Integer, String, ForeignKey
from sqlalchemy.orm import relationship, scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base

engine = create_engine(u'sqlite:///:memory:', echo=True)
session = scoped_session(sessionmaker(bind=engine))
Base = declarative_base()

#The business case here is that a company can be a stakeholder in another company.
class Company(Base):
    __tablename__ = 'company'
    id = Column(Integer, primary_key=True)
    name = Column(String(50), nullable=False)

class Stakeholder(Base):
    __tablename__ = 'stakeholder'
    id = Column(Integer, primary_key=True)
    company_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    stakeholder_id = Column(Integer, ForeignKey('company.id'), nullable=False)
    company = relationship("Company", foreign_keys=[company_id])
    stakeholder = relationship("Company", foreign_keys=[stakeholder_id])

Base.metadata.create_all(engine)

# simple query test
q1 = session.query(Company).all()
q2 = session.query(Stakeholder).all()

The latest documentation: 最新文档:

The form of foreign_keys= in the documentation produces a NameError, not sure how it is expected to work when the class hasn't been created yet. 文档中foreign_keys=的形式会产生NameError,不确定在尚未创建类时预期如何工作。 With some hacking I was able to succeed with this: 通过一些黑客,我得以成功实现了这一点:

company_id = Column(Integer, ForeignKey('company.id'), nullable=False)
company = relationship("Company", foreign_keys='Stakeholder.company_id')

stakeholder_id = Column(Integer, ForeignKey('company.id'), nullable=False)
stakeholder = relationship("Company",
                            foreign_keys='Stakeholder.stakeholder_id')

In other words: 换一种说法:

… foreign_keys='CurrentClass.thing_id')

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 SQLAlchemy:具有复合主键的同一个表的多个外键 - SQLAlchemy: Multiple foreign keys to same table with compound primary key SQLAlchemy 2指向同一主键的外键 - SQLAlchemy 2 Foreign Keys to the same Primary Key 来自唯一和主外键的SQLAlchemy主键 - SQLAlchemy Primary Key from Unique and Primary Foreign Keys sqlalchemy多个外键到同一个表 - sqlalchemy multiple foreign keys to same table 一对多关系中的多个外键 - SqlAlchemy - Multiple foreign keys in one to many relationship - SqlAlchemy SQLAlchemy一对一关系,主要是外键 - SQLAlchemy one-to-one relation, primary as foreign key sqlalchemy.exc.ArgumentError: Mapper mapped class could notassemble any primary key columns for mapped table'users' - sqlalchemy.exc.ArgumentError: Mapper mapped class could not assemble any primary key columns for mapped table 'users' sqlalchemy.exc.ArgumentError: Mapper mapped class could notassemble any primary key columns for mapped table 'houses' - sqlalchemy.exc.ArgumentError: Mapper mapped class could not assemble any primary key columns for mapped table 'houses' 将 SQLAlchemy 与复合主键和外键一起使用 - Using SQLAlchemy with composite primary and foreign keys 如何将多个外键映射到 SQLAlchemy 中的同一个父级? - How to map multiple foreign keys to the same parent in SQLAlchemy?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM