郝少华

Results 1 issues of 郝少华

### 在此输入你需要反馈的 Bug 具体信息(Bug in Detail): https://stackoverflow.com/questions/49837932/sequelize-query-or-ing-where-and-include-statements 看一下这个文档,我想用 sequelize 做一样的查询操作但是看了半天文档也不清楚在egg.js里怎样来用。 我的 model 定义如下: ``` app.model.Blog.belongsTo(app.model.Relation, { foreignKey: "userId", targetKey: "followerId", as: "follower", }); ``` 查询时候的代码如下: ``` include: [ { model:...