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.
Loading...
Related Quiz
- In scalable Entity Framework applications, why is it important to manage the lifetime of DbContext?
- In dealing with breaking changes, the ________ feature of EF can be critical for large-scale applications.
- Explain a strategy for efficiently querying data when using complex types with nested structures in Entity Framework.
- Employing ________ to pre-generate views can improve startup performance in Entity Framework.
- How is Entity Framework typically used in conjunction with WPF applications?