ASP.NET Membership provider with SQL schema's - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:27:27Z http://stackoverflow.com/feeds/question/459910 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/459910/asp-net-membership-provider-with-sql-schemas 2 ASP.NET Membership provider with SQL schema's Craig 2009-01-20T02:01:11Z 2009-03-09T21:48:52Z <p>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?</p> http://stackoverflow.com/questions/459910/asp-net-membership-provider-with-sql-schemas/459916#459916 4 Answer by Chris Charabaruk for ASP.NET Membership provider with SQL schema's Chris Charabaruk 2009-01-20T02:06:39Z 2009-01-20T02:06:39Z <p>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. <a href="http://www.devx.com/asp/Article/29256" rel="nofollow">This article</a> can help you figure out how to write custom providers.</p> http://stackoverflow.com/questions/459910/asp-net-membership-provider-with-sql-schemas/460093#460093 1 Answer by RM for ASP.NET Membership provider with SQL schema's RM 2009-01-20T03:57:25Z 2009-01-20T03:57:25Z <p>Been a while, but when you create the ASPNET Membership provider into your database, doesn't it create a whole bunch of stored procedures that are used by the provider its self? If so you could edit the table names, and update the stored procedures as required. The stored procuedure names would have to remain as generated though...</p> <p>Might be easier to just make a custom provider as recommended, but its potentially another option...</p>