We are using Entity Framework 4.3 Code First. We have three databases. For each database we have one DbContext. In the first database we have some legacy tables/sql. Overall there are approx. 70-80 tables/entities.
In future we want use EF 4.3 Migration.
- Can we merge all three database to one and keep our three DbContext classes?
- Is it better to also merge the DbContext classes?
- Can EF 4.3 handle this?