When dealing with the "Database First" approach in EF Core, which command is often used to scaffold the database structure?

  • Scaffold-Database
  • Update-Database
  • Add-Migration
  • Scaffold-Model
In the "Database First" approach, developers typically use the "Scaffold-Database" command to reverse engineer the database structure and generate corresponding entity classes in Entity Framework Core. This command helps in creating the model based on an existing database.
Add your answer
Loading...

Leave a comment

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