gpt4 book ai didi

node.js - 关系中的 TypeORM OneToMany 过滤器不影响结果

转载 作者:行者123 更新时间:2023-11-29 12:49:37 25 4
gpt4 key购买 nike

我有两个表:

@Entity('Reviews')
class Review {
...
@OneToMany((type) => MapCategory, map => map.review)
public categories: MapCategory[];
}

和:

@Entity('MapCategories')
export class MapCategory {
...
@ManyToOne(type => Review, (review) => review.categories)
public review: Review;
}

当我在 'categories' 上尝试过滤器时,结果没有按照我已经按下的键过滤 'categories'

const items = await this.reviewRepository.findAndCount({
relations: ['categories'],
where: {
categories: {
id: 1
}
}
});

最佳答案

对于这种情况,我们需要使用 queryBuilder,因为 find 不允许过滤关系:

const items = await reviewRepository.createQueryBuilder("review")
.leftJoinAndSelect("review.categories", "category")
.where("category.id = :id", { id })
.getManyAndCount()

关于node.js - 关系中的 TypeORM OneToMany 过滤器不影响结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57464268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com