I want to use the built-in membership functionality that comes with the SQL Server Express database that is created when the project is built but I want to use it in my SQL Server database without having to re-create the wheel so to speak.
+1
A:
Take a look at Setting up SQL Server with ASP.NET MVC it shows you all that you need
SQLMenace
2010-06-06 14:09:48
Thanks. Is it possible to include the aspnetdb tables in the same db with my project data? The reason I ask is that some hosting providers charge per database. How do others handle this?
Jason
2010-06-06 15:21:15
A:
Yes, you can, what you need do is run aspnet_regsql against your own database, it will add all the database objects into your database.
J.W.
2010-06-07 11:55:15