I would like to use the ASP.NET Membership Provider security framework but would like it to use SQL Server schema’s. So instead of having tables such as aspnet_Membership I would prefer it to be something like sec.Membership. Has anyone tried this and got it to work?
I would like to use the ASP.NET Membership Provider security framework but would like
Share
I believe the table names are hard-coded into the default SQL providers for ASP.NET. You’ll have to implement custom providers to do the same things as the default providers, but using an alternate table name instead. This article can help you figure out how to write custom providers.