可以使用sequelize datatype virtual中的查询关联模型吗?

时间:2018-02-06 10:49:40

标签: node.js express sequelize.js

像这样的代码示例:

var Model1 = sequelize.define('Model1', {
    field1: DataTypes.STRING,
    field2: DataTypes.INTEGER,
    field3: {
      type: DataTypes.VIRTUAL,
      include : {model : Model2},
      get: function() {
        return this.Model2 where : { condition }    <-------------
      }
    }
  })

我想获取关联模型的数据,但先过滤并继续使用dataType virtual

0 个答案:

没有答案