SQLAlchemy中对象的常量属性/列值

时间:2011-05-13 15:48:33

标签: python sqlalchemy

我有一个班级

class User:
    constant_value = 5

当我使用“mapper”时,财产消失了。我该如何保留这个?

1 个答案:

答案 0 :(得分:0)

使用exclude_properties:

mapper(Address, addresses_table,
            exclude_properties=['street', 'city', 'state', 'zip'])