有人可以使用Sequelize.define来帮助我使用具有命名空间的表。
代码如下。
*connection.define('[Config].[Setting]', {
SettingId: {
type: sequelize.STRING,
primary: true
},
Name: sequelize.STRING,
DataType: sequelize.STRING
},
{
freezeTableName: true,
timestamps: false,
});*
所以在上面的代码中,Config是Setting table的命名空间。