In Entity Framework, what does the Code-First approach emphasize?

  • Code-based entity and database creation
  • Database-first design
  • Model-first development
  • Database schema generation
The correct option is Code-based entity and database creation. The Code-First approach in Entity Framework emphasizes defining your domain model using plain CLR objects (POCO classes) and then creating the database from these classes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *