Using Entity Framework 6 using a model first setup with
- No connection string specified.
- Simple single class POCO for model.
Run application, database created. Woot!
Delete .mdf/.ldf in App_Data folder.
Run application, database connection error.
Why did it not recreate the database?
P.S. Tried doing How to re-create database for Entity Framework? but it doesn't work.
So how do I convince EF to recreate the database (and why is this dang hard?)?