I am developing asp.net MVC 3 application from the standart template, with included AccountController for registration and authorisation of users. As I understand from Where does the MVC3 default template store user-account information? - all account information is stored in ASPNETDB.mdf (using MsSQL Express)
At the same time I've made MyBase.sdf
(SqlServerCe.4.0) for storing information about products, which are displayed on the pages of the project.
Now I want to store both account info and products info in one database(preferably SqlServerCe.4.0). I've tried to change connectionstring for the account db in web.config but it didn't work.
Is there any fast way to store all account and product info in MyBase? or the only way is to create a new Membership provider? ASPNET MVC3: Can i use my user/roles tables to handle user authentication?