The 'Nc.Common.Security.CustomRoleProvider' requires a database schema compatible with schema version '1'
Error :
The 'Nc.Common.Security.CustomRoleProvider' requires a database schema compatible with schema version '1'. However, the current database schema is not compatible with this version. You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
Solution :
There is a table called aspnet_schemaversions. It requires some values to be able to validate the versions (duh). When I added these values into the table, it started working.
common 1 Truehealth monitoring 1 True
membership 1 True
personalization 1 True
profile 1 True
role manager 1 True
Comments
Post a Comment