I am struggling with calling a MS SQL Stored Proc using Sequelize. This is how i normally call the stored proc from SSMS
USE [MYDB]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[GetThings_ByLocation]
@BeginDate = N'2016-06-23',
@EndDate = N'2016-07-09',
@LocationID = NULL
SELECT 'Return Value' = @return_value
GO
How would i make this call using sequelize?