📜  typeorm 通过 id 数组从表中获取数据 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:05.754000             🧑  作者: Mango

代码示例1
const posts = await manager.createQueryBuilder(Post, "post")
    .where("post.authorId IN (:...authors)", { authors: [3, 7, 9] })
    .orderBy("post.createDate")
    .getMany();