gpt4 book ai didi

repository - Typeorm:检查属性是否为值 1、2、3 或 n

转载 作者:行者123 更新时间:2023-12-02 20:25:55 28 4
gpt4 key购买 nike

我想获取所有具有特定角色 的任务。我有一个字符串数组,我想为其获取任务。

查询:

return this.createQueryBuilder('task')
.select(this.baseSelect)
.where('task.role = :role', { role }) // What here?
.getMany();

这段代码当然只获取角色是那个值的任务。如何检查多个值?

最佳答案

要搜索多个角色,您可以使用 IN 运算符:

TypeORM 的旧版本

return this.createQueryBuilder('task')
.select(this.baseSelect)
.where('task.role IN(:roles)', {roles: [role1, role2, role3]});
.getMany();

TypeORM 的新版本

正如用户 Christophe Geers 所提到的,在新版本中,您将不得不使用传播语法。

return this.createQueryBuilder('task')
.select(this.baseSelect)
.where('task.role IN(:...roles)', {roles: [role1, role2, role3]});
.getMany();

关于repository - Typeorm:检查属性是否为值 1、2、3 或 n,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49980916/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com