is it possible to execute a stored procedure using EF, that select records from database from two or more tables using inner join and left outer join.
my point of vi
In you are using Entity Framework with MySQL:
In this example, my stored procedure is expecting one parameter, named myParam of type BIGINT
var myParam = new SqlParameter("@myParam", (MySqlDbType.Int64)).Value = 100;
var res = _context.Database.SqlQuery($"call MyProcedureName({pyParam})");
Note that I am using C# String Interpolation to build my query string.