使用 Sequelize 的 NOLOCK 查询

Queries with NOLOCK using Sequelize

我想知道如何告诉 Sequelize 使用 NOLOCK 进行 SELECT 查询。

我在 SQL Server 2008 上使用繁琐的 Sequelize 进行连接。

我在文档中找不到任何内容。

自 Sequelize v4.37.0 起,TableHint is now supported.

示例:

Project.findAll({
    tableHint: TableHints.NOLOCK // only can specify one
});