I really like the Entity Framework Code First idea because I can rapidly prototype new projects, but right now I'm dealing with a database that already exists.
We have many databases with the same schema. At the moment, if we start new projects, we need to copy the database to to a new server. How can I 'save' us from having to do this step manually?
I think I have two options:
- Copy the Database as before and generate a ADO.NET Entity Data Model with the Wizard
- Write the code first and map that to the database schema, and let Code First generate the database if it doesn't exist.
Is there a tool that does this?