我正在编写一个多媒体存档数据库后端,我想使用连接表继承。我使用带有SQLAlchemy的Python和声明性扩展。持有媒体记录的表格如下:
_Base = declarative_base()
class Record(_Base):
__tablename__ = 'records'
item_id = Column(String(M_ITEM_ID), ForeignKey('items.id'))
storage_id = Column(String(M_STORAGE_ID), ForeignKey('storages.id'))
id = Column(String(M_RECORD_ID), primary_key=True)
uri = Column(String(M_RECORD_URI))
type = Column(String(M_RECORD_TYPE))
name = Column(String(M_RECORD_NAME))
列type
是一个鉴别器。现在我想从A
类定义子类Record
udioRecord,但我不知道如何使用声明性语法设置多态映射器。我正在寻找以下代码的等效代码(来自SQLAlchemy文档):
mapper(Record, records, polymorphic_on=records.c.type, polymorphic_identity='record')
mapper(AudioRecord, audiorecords, inherits=Record, polymorphic_identity='audio_record')
如何将polymorphic_on
,polymorphic_identity
和inherits
关键字传递给声明性扩展程序创建的映射器?
谢谢 扬
答案 0 :(得分:1)