Dapper multi-parameter stored procedure query returns nothing back from database
问题 I have been using Dapper as my ORM for my .NET Core Web Api. When using Dapper to query a stored procedure from my database with one parameter, it works exactly as expected. When I add more than one parameter, it does not return anything back to my datamodel like it should. I suspect this has to do either with my syntax or the way I am structuring the query. The stored procedure I am using below works as expected when executed inside a SSMS query window. Here is my method containing the