📅  最后修改于: 2022-03-11 15:04:05.754000             🧑  作者: Mango
const posts = await manager.createQueryBuilder(Post, "post")
.where("post.authorId IN (:...authors)", { authors: [3, 7, 9] })
.orderBy("post.createDate")
.getMany();