我正在使用sequelize和postgres。
这是我的两个模型:
const Product = sequelize.define('product', {
id: { type: Sequelize.INTEGER, primaryKey: true },
price: Sequelize.INTEGER,
})
const Rules = sequelize.define('rule', {
id: { type: Sequelize.INTEGER, primaryKey: true },
minPrice: Sequelize.INTEGER,
})
当我将Product
保存为特定的id
时,我想验证其价格是否高于表{{1}中的minPrice
的{{1}}
使用id
或rules
完成此操作的最佳方法是什么?