最佳答案
知道如何将 include 与属性(当您只需要包含所包含表中的特定字段时)一起用于 Sequelize 吗?
目前我有这个(但它不像预期的那样工作) :
var attributes = ['id', 'name', 'bar.version', ['bar.last_modified', 'changed']];
foo.findAll({
where : where,
attributes : attributes,
include : [bar]
}).success(function (result) { ...