Answers for "wherein typeorm"

0

wherein typeorm

const posts = await manager.createQueryBuilder(Post, "post")
    .where("post.authorId IN (:authors)", { authors: [3, 7, 9] })
    .orderBy("post.createDate")
    .getMany();
Posted by: Guest on February-07-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language