Reputation: 8515
When I create a new mvc 5 project (individual user account authentication) I get the database in localDb. I need some other tables in my database to relate with user tables which will probably sit in sql (just because i never seen localDb used in production in any place that I worked so far), therefore I probably would want to have the user tables created in my sql server instance as well. I understand that aspnet_regsql.exe is not the tool to use for the new asp.net identity tables creation.
Upvotes: 2
Views: 2089
Reputation: 365
So how do I get user tables to my sql server ?
As well why does the new project always push towards localDb?
Upvotes: 2