使用node.js sequelize,我是否可以基于查询而不是关联包含另一个对象

时间:2019-06-08 21:52:48

标签: javascript node.js sequelize.js

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!

'*'作为附带说明,如何查询当前行?

0 个答案:

没有答案