2

我想动态获取 InstrumentedList 实例使用的 SQLAlchemy 映射器类。

我有一个 1-M ParentClass-ChildClass(我们称列 myRelation),而 parentInstance.myRelation 是 InstrumentedList 实例。我可以破解它并获取 InstrumentedList 中第一个实例的类,但如果 InstrumentedList 中没有对象,这将不起作用。

原因:我需要将包含映射器类 X 的属性的 Python 字典附加到 InstrumentedList,但我不知道运行时的映射器类。由于我无法附加字典,因此我需要获取映射器类。

谢谢。

4

1 回答 1

4

该关系通过 与检测列表相关联property。所以从这个普通的香草映射开始:

from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy.ext.declarative import declarative_base

Base = declarative_base()

class A(Base):
    __tablename__ = "a"
    id = Column(Integer, primary_key=True)
    bs = relationship("B")

class B(Base):
    __tablename__ = "b"
    id = Column(Integer, primary_key=True)
    a_id = Column(Integer, ForeignKey('a.id'))

在任何最新版本的 SQLAlchemy 中,您都可以像这样看到它:

print A.bs.property.mapper.class_

在 0.8 中有更多可用的 API,您可以这样做:

from sqlalchemy import inspect
print inspect(A.bs).mapper.class_

检查文档-> http://docs.sqlalchemy.org/en/rel_0_8/core/inspection.html

“mapper->class_”的文档-> http://docs.sqlalchemy.org/en/rel_0_8/orm/mapper_config.html#sqlalchemy.orm.mapper.Mapper.class_

于 2013-03-12T02:26:40.533 回答