📜  sequelize count all - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:52.759000             🧑  作者: Mango

代码示例2
Project.count().then(c => {
  console.log("There are " + c + " projects!")
})

Project.count({ where: {'id': {[Op.gt]: 25}} }).then(c => {
  console.log("There are " + c + " projects with an id greater than 25.")
})