I'm about to start on a new project, and while most of my team's experience is with using VS Database projects and SSMS directly on a database, we would like to use EF instead. However, time constraints won't allow us to take the time to fully learn EF before implementation.
At first glance, the code-first migrations in EF Code-first seem like they would be a very valuable tool, but with code-centric database first (they don't seem to have a good name for this) code migrations don't appear to be a feature. Instead, only projects that start as code-first seem to support this.
Is it possible to start with a database, and then (at some point during development), somehow convert to Code-first, in order to take advantage of Code First Migrations?