You've just started working on an ASP.NET Core project that uses Identity for user management. What are migrations primarily used for in this context?

  • Managing the database schema
  • Managing user authentication
  • Managing user roles
  • Managing user sessions
In an ASP.NET Core project with Identity, migrations are primarily used for managing the database schema. They allow you to create, update, and version your database schema as your application evolves. This is crucial for user management as it involves the creation and maintenance of user-related tables.
Add your answer
Loading...

Leave a comment

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