I\'ve got the latest Mysql connector that allows you to use the Visual Studio Entity Framework designer. It\'s been working great, but I just added a stored proc.
It was my solution to call a stored procedure. I hope usefull.
MovieDbEntities db = new MovieDbEntities(); int id = 2; var result = db.Movie.SqlQuery($"CALL SP_ReadMovie({id})").ToList();