How to fix could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'.
The error above is normally caused by a database that is not aspnet enabled. For example, currently I have a code-first database that is pre...

The solution is to re-enable aspnet in your database by;
1.) Running command prompt from your Visual Basic 20xx Tools folder.
2.) Execute:
aspnet_regsql.exe -S <serverName> -U <dbUser> -P <dbPassword> -A all -d <dbName>
Post a Comment