Skip to content

Commit

Permalink
Clarify the goal of EF Core code-first (#34347)
Browse files Browse the repository at this point in the history
  • Loading branch information
guardrex authored Dec 12, 2024
1 parent 08a87db commit a19f35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/blazor/tutorials/movie-database-app/part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ EF Core adopts the *code-first* approach for database design and maintenance:
* Entity classes are created and updated first in the app.
* The database is created and updated from the app's entity classes.

This is the reverse procedure of *database-first* approaches, where the database is designed, built, and updated first. Adopting EF Core's code-first approach speeds up the process of app development because most of the difficult and time-consuming database creation and management procedures are handled transparently by the EF Core tooling, so you can focus on app development.
This is the reverse procedure of *database-first* approaches, where the database is designed, built, and updated first. Adopting EF Core's code-first approach aims to speed up the process of app development because most of the difficult and time-consuming database creation and management procedures are handled transparently by the EF Core tooling, so you can focus on app development.

:::zone pivot="vs"

Expand Down

0 comments on commit a19f35a

Please sign in to comment.