8

如何在不通过会话进行一些查询的情况下初始化映射器的反向引用?例如,我有两个模型,分别在以下代码中命名为“Client”和“Subject”:

Base = declarative_base()

class Client(Base):
    __tablename__ = "clients"

    id = Column(Integer, primary_key=True)
    created = Column(DateTime, default=datetime.datetime.now)
    name = Column(String)

    subjects = relationship("Subject",  cascade="all,delete",
        backref=backref("client"))


class Subject(Base):
    __tablename__ = "subjects"

    id = Column(Integer, primary_key=True)
    client_id = Column(Integer, ForeignKey(Client.id, ondelete='CASCADE'))

然后,在我的代码中的某个地方,我想像这样获取client类的 backref Subject,但这会引发异常:

>>> Subject.client
AttributeError: type object 'Subject' has no attribute 'client'

查询后点Client赞:

>>> session.query(Client).first()
>>> Subject.client
<sqlalchemy.orm.attributes.InstrumentedAttribute at 0x43ca1d0>

属性client是在查询相关模型(映射器)后创建的。
我不想做这样的“温暖”查询!

4

2 回答 2

12

或者,您可以使用:

from sqlalchemy.orm import configure_mappers

configure_mappers()

这样做的好处是它可以一步创建所有模型的所有反向引用。

于 2013-02-17T14:48:03.387 回答
6

因为 SQLAlchemy 使用元类,所以在另一个类上创建反向引用的代码将不会运行,直到您创建了该类的至少一个实例Client

补救方法很简单:创建一个Client()实例,然后再次丢弃它:

>>> Subject.client
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: type object 'Subject' has no attribute 'client'
>>> Client()
<__main__.Client object at 0x104bdc690>
>>> Subject.client
<sqlalchemy.orm.attributes.InstrumentedAttribute object at 0x104be9e10>

或使用configure_mappers实用功能:

from sqlalchemy.orm import configure_mappers

扫描您的模型以获取此类引用并初始化它们。实际上,创建任何一个实例都会在后台调用此方法。

于 2013-02-17T14:05:54.323 回答