Follow the Search Function Code
public List<Pessoa> Buscar(string Nome)
{
using(var db = new MyContext())
{
var Result = db.Database.SqlQuery<Pessoa>("EXEC SP_Busca_Cliente @Nome", Nome).ToList();
return Result.ToList();
}
}