During the initial setup of a database using Entity Framework, which method is commonly used to seed data?

  • Code-First Approach
  • Database Migration
  • DbContext's Seed method
  • Model Configuration
In Entity Framework, during the initial setup of a database, the commonly used method to seed data is by overriding the DbContext's Seed method. This method allows developers to specify the initial data that should be populated into the database when it's created or updated.
Add your answer
Loading...

Leave a comment

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