A: {
id: String
bID: String
}
B: {
id: String
}
models.A.findAll({
include: {
model: models.B,
where: '(*the current row in the query).bID == someID'
}
})
当我尝试做这样的事情时,我收到消息EagerLoadingError: authorityConfirmation is not associated to authority!
'*'作为附带说明,如何查询当前行?