Which method in Entity Framework Core is used for customizing database schemas during initial setup?

  • ApplyDatabaseSchema()
  • Configure()
  • ConfigureServices()
  • OnModelCreating()
In Entity Framework Core, the OnModelCreating() method is used to customize database schemas during initial setup. This method is overridden in the DbContext class and allows you to define entity configurations, relationships, and other database-specific settings.
Add your answer
Loading...

Leave a comment

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