Using Visual Studios 2010 I’m creating a project that has a database.
I decided to try to use one of those Database Projects that allow you to manage the database in source control along with the code.
I also think I will use entity framework as my data access tool.
Are there any good solution to tie the EF 4.0 project to the database being managed in the Database project (assuming it’s a new db)?
You simply use your database project to create database for you and you use Database first approach with Entity framework (that means you will use wizard and update from database to create entity model for you).