📜  sequelize findall in array - 任何代码示例
📅  最后修改于: 2022-03-11 14:58:29.107000             🧑  作者: Mango
代码示例1
No need "in" property, sequelize auto define this. Just set array.
Tag.findAll({
where: {
id: [1,2,3,4]
}
}).then(...)