In a scenario where an existing database needs to be integrated into a new application, which approach would be most suitable and why?

  • Code-First Approach
  • Database-First Approach
  • Hybrid Approach
  • Model-First Approach
The Database-First approach would be most suitable in this scenario. This approach involves generating entity classes from an existing database schema, allowing seamless integration of the existing database with the new application. It enables developers to work with an established database structure, reducing the need for extensive modifications to the database during integration.
Add your answer
Loading...

Leave a comment

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