juhi
juhi

Reputation: 330

asp.net MVC 4.0 membership database

I'm familiar with aspnet_regsql.exe to create a membership database in asp.net web forms. but i am not aware about MVC4.0(visual studio 2012) membership. what should i do to have these membership table in SQL server management studio 2012.

Upvotes: 1

Views: 129

Answers (1)

Erik Funkenbusch
Erik Funkenbusch

Reputation: 93474

The tables are created automatically the first time you try to register a user. If you want to configure a remote database, then you can use database migrations to generate a script to execute to create the tables afterwards.

Upvotes: 1

Related Questions