In my C# application, I want to delete everything in System.Data.Entity.Databas when my application starts and re-populate my data from scratch programically.
I see there is an Initalizer method. System.Data.Entity.Database.SetInitializer()
How can I implement my initializer to delete everything from scratch ? and repopulate my data?
Thanks.