I published my ASP.net web forms app on my hosting server,
after updating the data in the SQL database using entity framework, the app still returning old values.
Is this possible, or I'm going crazy.
I published my ASP.net web forms app on my hosting server,
after updating the data in the SQL database using entity framework, the app still returning old values.
Is this possible, or I'm going crazy.
The problem was that I'm using a static Datacontext in Entity Framework. this is a huge mistake for a unit of work object. I just
My references:
Should data contexts be static?