I am following through with EF6 tutorial
I followed the steps copied code from website into visual studio 2013. First problem the database was not created; I found solution by adding this to Global Application_Start method
ProductContext context = new ProductContext();
context.Database.Initialize(true);
Database was created but without seeding.
Please help