I follow this tutorial to create a Code-First database.
After installing EF and creating the first base classes, he says:
Launch the application and you will see that the MigrationsCodeDemo.BlogContext Database is created for you.
Well, I have VS2013 Pro with all installed SQL servers (full installation of VS2013 Pro).
Now, as you can see from the image below, I canβt find my database after starting the program, as the tutorial suggests. When I try to complete part of the migration from the tutorial, I really get the error that it should get, implying that somewhere the database was actually created. I just can't find him.
Where is he located?

Edit: Added App.config
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> </configSections> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <entityFramework> <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework"> <parameters> <parameter value="mssqllocaldb" /> </parameters> </defaultConnectionFactory> <providers> <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> </providers> </entityFramework> </configuration>
source share