标签: python sqlalchemy
我有一个班级
class User: constant_value = 5
当我使用“mapper”时,财产消失了。我该如何保留这个?
答案 0 :(得分:0)
使用exclude_properties:
mapper(Address, addresses_table, exclude_properties=['street', 'city', 'state', 'zip'])