“Tyeptringorm en el lugar” Código de respuesta

Tyeptringorm en el lugar

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

donde en typingorm

		const getAllProjectTelmarNotNull: Projects[] = await this.projectModel
				.createQueryBuilder('projects')
				.where('projects.telemarketing_id NOTNULL')
				.andWhere('projects.latest_status = :latest_status', { latest_status: 'NEW' })
				.andWhere('projects.telemarketing_id IN (:...telemarketing_id)', { telemarketing_id: telemarketings })
				.getMany()
Restu Wahyu Saputra

Typeorm donde con el ejemplo

.where("id IN(:...ids)", { ids: [1,2,3] })
Restu Wahyu Saputra

Respuestas similares a “Tyeptringorm en el lugar”

Preguntas similares a “Tyeptringorm en el lugar”

Más respuestas relacionadas con “Tyeptringorm en el lugar” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código