In Visual Studio 2013, I created an ASP .NET MVC web project with ASP.Net Identity.
And the Entity Framework Code First created a SQL Server Express LocalDB db in
APP_Data folder by default.
But I prefer a SQL Server Express db because SQL Server Express LocalDB couldn't work with IIS when I hosted the web app in local IIS.
So my questions are,
How can I create a SQL Server Express db rather than a SQL Server Express LocalDB db by default when I create a new project with EF Code First?
I have installed SQL Server Express even I have replaced "(LocalDB)\v11.0" with ".\SQLEXPRESS " in "Tools - Options - Data tools - Data connection - Instance name" of VS2013. But they didn't work for me.
Let us say now we have to use SQL Server Express LocalDB for ASP.Net Identity and my db, I wonder whether there will be an easy way to convert my LocalDB db to SQL Server Express or SQL Server db when I finish development and deploy my app to IIS.
Thank you in advance.