I did a database-first approach with Entity Framework, so I basically created a data model object, set the connection string, and the .edmx
, context, and all related files were created in an instance. When I put right click the edmx file in designer mode, and click update model from database, it doesn't update the context. I have a new stored procedure in the database I want to show in the context, how can I get it in there?
When you do the update model from database, it should let you choose which database objects (stored procedures, functions, tables, etc.) you want to add/remove/refresh.