查询Bookshelf belongsToMany调用中的数据透视表列

时间:2015-07-28 08:21:02

标签: node.js postgresql bookshelf.js

我有两张桌子,有多对多的关系表达如下:

as

{
  id: <primary key>
}

bs

{
  id: <primary key>
}

as_bs

{
  as_id: <reference to table as>
  bs_id: <reference to table bs>
  c: <integer column>
}

是否可以使用在withRelated中指定列c条件的查询对象在书架中执行as_bs调用?

的内容
viewRelation: function() {
    return this.belongsToMany(bs).withPivot(["c"]).query({where: {c: 1000}});
}

提前感谢您提供的任何帮助!

0 个答案:

没有答案