Default Asp.net MVC Authentication

1

I am starting studies on ASP.NET MVC, and wanted to know where the visual studio creates the database and tables when choosing the default MVC project. It seems that it already creates all the support for registration and login. Where are these tables? Can I migrate this to a mysql database, for example?

    
asked by anonymous 13.10.2014 / 14:24

1 answer

2

Where are these tables?

In the App_Data directory is a temporary bank in LocalDb format, but this file is hidden. In Solution Explorer , click the Show All Files button to see it:

CanImigratethistoamysqldatabase,forexample?

Itcan.Firstyouneedto configure the Entity Framework for MySQL , and then run the command Update-Database to popular your bank. This answer teaches you how to do this for SQL Server , but also for MySQL.

    
13.10.2014 / 21:14