Clarify the goal of EF Core code-first (#34347)

pull/34349/head
Luke Latham 2024-12-12 05:45:20 -05:00 committed by GitHub
parent 08a87db36f
commit a19f35a4af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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"