0

I am going to use Code First Approach and I am slightly confused whether changes in Database will change the code in MVC 5 code first approach using EF 6

And I am also refered the Code-first vs Model/Database-first

Please help me understand with this

Community
  • 1
  • 1
anonymous
  • 3
  • 5
  • The Code First Approach would generally mean that the structure of your database is based on your code, and not the other way around. – JLRishe Dec 09 '14 at 13:13

1 Answers1

0

No change in database will not change your code in code first. But if you have any changes in your POCO classes used for tables then your database will change.

Chiro
  • 1