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<
You can write this code in OnModelCreating method:
modelBuilder.Conventions.Remove();