I'm using EF database first and have added a stored procedure to the database.
When I ran Update model from database
on the edmx file it picked up the stored procedure and I selected it as an item I wanted to include.
I have a file named Model<projectname>.Context.cs
with a class called Entities
in it. This is an auto-generated class and it contains methods for other stored procedures in the system. My new stored procedure does not have a corresponding method in this class and running Run custom tool
does not help.
Is there something else that I need to do, that I am not doing?
Thanks,
Sachin