我有一个实体 House
使用此列:
@ManyToMany(type => Person, Persons => Persons.Houses)
persons: Persons[];
现在我想把所有的房子都连接到 person.id
:
this.houseRepository.find({
where: {
Persons: { ?? } // Here I cant do 'Persons: { id: idToFind }'
}
})
如何查询?
1条答案
按热度按时间carvr3hs1#
试试这个
query.leftjoinandselect('houses.persons','persons').where('persons.id=:personid',{personid:1}).getmany();