I'm working with EntityFramework 6 , I have my model created (First DataBase) for quite some time. In my project I have some queries with LINQ and others (to optimize times) made with Stored Procedures (SP).
It worked correctly until I needed to update an existing SP. For my model to notice the change I deleted the 3 files related to the SP.
Then on the model I do the update and I get the SP changes; up to here everything normal. The inconvenience occurs when when executing the website, queries made with LINQ do not return any results; although they have no relationship with the SP or modified tables.
How can I solve this problem? There are no exceptions during execution and if I change the changes in the model the queries with LINQ work correctly.