In my project I currently have two databases, one that is named ASPNETDB.MDF and another named School.sdf. ASPNETDB.MDF was created by the .net Default Membership Provider, I made the second one using Entity Framework. When I go to make this project live, all this information needs to be contained within the same project. How would I make the app function correctly as if there was only one database instead of the two- how would I merge all of that data, or -at the very least- build a blank database that was ready to be seeded with all necessary information, my School context and the Default Membership Provider information.
Can anybody give me a help on this?
You can follow this link from MS: http://www.asp.net/web-forms/tutorials/security/membership/creating-the-membership-schema-in-sql-server-cs
It consists of executing the tool aspnet_regsql.exe, located on %WINDIR%\Microsoft.Net\Framework\vFRAMEWORK_VERSION_NUMBER\
This talks about 2.0, but works the same for newer versions.