How to call stored procedure in Entity Framework Core with input and output parameters using mysql
问题 I am using ASP.net Core 2.2 with Entity Framework core 2.2.6 and Pomelo.EntityFrameworkCore.MySql 2.2.0 for connectivity with MySQL, I have a stored procedure which takes 3 input parameters and 1 output parameter. I am able to call it in MySQL workbench like CALL GetTechniciansByTrade('Automobile', 1, 10, @total); select @total; Now I want to call this using entity framework core, the code I am currently using is var outputParameter = new MySqlParameter("@PageCount", MySqlDbType.Int32);