How can I use DropCreateDatabaseIfModelChanges in a VB.NET application in an early development state where the model changes quite often. I know I have to add those lines to Global.asax - but I only found examples using C# - could someone please give me a hand?
Got it: global.asax.vb
Imports System.Data.Entity
...
Database.SetInitializer(New DropCreateDatabaseIfModelChanges(Of <ENTITYNAME>)())