我有两张桌子,有多对多的关系表达如下:
表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}});
}
提前感谢您提供的任何帮助!