【发布时间】:2021-04-11 23:35:33
【问题描述】:
我刚刚开始使用 NestJS。我在这里遵循了 sequelize 数据库示例https://docs.nestjs.com/recipes/sql-sequelize。这在使用模型时很棒,但是执行与此类似的自定义查询的 NestJS 方法是什么。
res = await this.sequelize.query(
`
select * from my_table where id=$id
`,
{
bind: {
id: id,
},
type: QueryTypes.SELECT,
transaction,
},
【问题讨论】:
标签: sql postgresql sequelize.js nestjs