gpt4 book ai didi

sql - 使用 NestJS 执行自定义查询的正确方法是什么?

转载 作者:行者123 更新时间:2023-12-03 22:32:26 25 4
gpt4 key购买 nike

我刚刚开始使用 NestJS。我在 https://docs.nestjs.com/recipes/sql-sequelize 中遵循了 sequelize 数据库示例。这在使用模型时很棒,但是执行与此类似的自定义查询的 NestJS 方法是什么。

res = await this.sequelize.query(
`
select * from my_table where id=$id
`,
{
bind: {
id: id,
},
type: QueryTypes.SELECT,
transaction,
},

最佳答案

你有 Sequelize 连接实例作为提供者,所以你可以尝试这样的事情:

return this.catsRepository.query('select * from my_table where id=$id',
{
bind: {
id: id,
},
type: QueryTypes.SELECT,
transaction,
});

关于sql - 使用 NestJS 执行自定义查询的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65592103/

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