I am starting a new web application project in VS2015, web forms, ASP.NET 4.5.2.
I create the site and run in a browser from my local machine, go to the Login page, create a user and observe in the db that five tables have been created AspNetUsers etc. I can Register, log in, log out and create new users. All is fine.
I then work on a page a bit (cosmetically and no coding) but without touching web.config or anything in the Account folder, and then go back to login but now, when logging back in, I get error 'Invalid object name 'dbo.aspnet_SchemaVersions'.' I scrub
the project and restart from scratch and the same behaviour repeats. I cannot figure what I am doing to cause the security model to look for a nonexistent object.
I feel that somehow my project is wanting to use the previous security version - where I remember such a table exists - and would welcome any suggestion as to where to look to identify the cause.
<confi ...
Go to the complete details ...