I am trying to access a Store Procedure from EntityFramework.
I have followed these steps:
First of all I have created the Stored Procedure in the Azure Data
This post should be a comment but I don't have enough rep to comment.
I was having a similar issue. My stored procedures were visible and yet I was still getting the error. This question and answer from Alex led me to look under Function Imports in the Model Browser and I saw that I had multiple entries for each of the stored procedures. They had sequence numbers to prevent them from being true duplicates. I removed everything under Function Imports and everything under Stored Procedures / Functions and then re-added them by updating the model from the database. My issue is now resolved.