In which approach do you create database tables directly from your code models?

  • Code First
  • Database First
  • Entity First
  • Model First
Code First approach involves creating database tables directly from code models. It allows developers to define their domain model using C# or VB.NET classes, and the database schema is generated based on these classes during runtime. This approach provides flexibility and control over the database schema, making it suitable for scenarios where the database evolves with the application.
Add your answer
Loading...

Leave a comment

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