Modifying the database…error “Consider using Code First Migrations to update the database”

Before I forget … ( and I gotta read this later Scott Gu’s Blog)

“The model backing the ‘ApplicationDbContext’ context has changed since the database was created. Consider using Code First Migrations to update the database”

Put this line in your Global.asax in Application_Start() and the error will go away…

Database.SetInitializer<YourDbContext>(null);