I\'m trying to create a new database using the code first concept of Entity Framework. However when running the code the database isn\'t created (using the DropCreateD
DropCreateD
befor intialize it run following code to create your database:
context.Database.CreateIfNotExists();