I am trying to use Entity Framework 5. The first problem was that EF creats tables automatically. I tried to fix it by including dbModelBuilder.Conventions.Remove<
dbModelBuilder.Conventions.Remove<
If you don't want EF to create tables and manage consistency between you model and database just use this at the startup of your application:
Database.SetInitializer(null);