1

I am using a stack of node, mssql, express for api generation, so how can we use an ORM like sequalize for mssql with stored procedure, is there way to use this or any documentation related to this.

Right now I am using npm mssq with stored procedure

Vietnam
  • 13
  • 4
akshay bagade
  • 1,169
  • 1
  • 11
  • 24

1 Answers1

1

Sequelize uses npm package Tedious (https://www.npmjs.com/package/tedious) to work with MS SQL. Connecting to the database is the same as others.

You can use raw query to get results from stored procedures. the answer to your question

pshenOk
  • 466
  • 4
  • 8