如何使用findOne({where: {something or something2}});
我读了文档,我听不懂
帮帮我
答案 0 :(得分:2)
首先,您必须导入Op
:
import {Op} from "sequelize";
然后创建如下的where子句:
findOne({where: {
value_to_find: {
[Op.or]: {
[Op.eq]: something,
[Op.eq]: something2
}
}
}})