--- title: Migrate Authentication and Identity to ASP.NET Core author: ardalis description: Learn how to migrate authentication and identity from an ASP.NET MVC project to an ASP.NET Core MVC project. ms.author: riande ms.date: 10/29/2024 uid: migration/identity --- # Migrate Authentication and Identity to ASP.NET Core By [Steve Smith](https://ardalis.com/) In the previous article, we [migrated configuration from an ASP.NET MVC project to ASP.NET Core MVC](xref:migration/configuration). In this article, we migrate the registration, login, and user management features. ## Configure Identity and Membership In ASP.NET MVC, authentication and identity features are configured using ASP.NET Identity in `Startup.Auth.cs` and `IdentityConfig.cs`, located in the *App_Start* folder. In ASP.NET Core MVC, these features are configured in `Startup.cs`. Install the following NuGet packages: * `Microsoft.AspNetCore.Identity.EntityFrameworkCore` * `Microsoft.AspNetCore.Authentication.Cookies` * `Microsoft.EntityFrameworkCore.SqlServer` [!INCLUDE [managed-identities](~/includes/managed-identities-conn-strings.md)] In `Startup.cs`, update the `Startup.ConfigureServices` method to use Entity Framework and Identity services: ```csharp public void ConfigureServices(IServiceCollection services) { // Add EF services to the services container. services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))); services.AddIdentity() .AddEntityFrameworkStores() .AddDefaultTokenProviders(); services.AddMvc(); } ``` At this point, there are two types referenced in the above code that we haven't yet migrated from the ASP.NET MVC project: `ApplicationDbContext` and `ApplicationUser`. Create a new *Models* folder in the ASP.NET Core project, and add two classes to it corresponding to these types. You will find the ASP.NET MVC versions of these classes in `/Models/IdentityModels.cs`, but we will use one file per class in the migrated project since that's more clear. `ApplicationUser.cs`: ```csharp using Microsoft.AspNetCore.Identity.EntityFrameworkCore; namespace NewMvcProject.Models { public class ApplicationUser : IdentityUser { } } ``` `ApplicationDbContext.cs`: ```csharp using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.Data.Entity; namespace NewMvcProject.Models { public class ApplicationDbContext : IdentityDbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); // Customize the ASP.NET Core Identity model and override the defaults if needed. // For example, you can rename the ASP.NET Core Identity table names and more. // Add your customizations after calling base.OnModelCreating(builder); } } } ``` The ASP.NET Core MVC Starter Web project doesn't include much customization of users, or the `ApplicationDbContext`. When migrating a real app, you also need to migrate all of the custom properties and methods of your app's user and `DbContext` classes, as well as any other Model classes your app utilizes. For example, if your `DbContext` has a `DbSet`, you need to migrate the `Album` class. With these files in place, the `Startup.cs` file can be made to compile by updating its `using` statements: ```csharp using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Hosting; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; ``` Our app is now ready to support authentication and Identity services. It just needs to have these features exposed to users. ## Migrate registration and login logic With Identity services configured for the app and data access configured using Entity Framework and SQL Server, we're ready to add support for registration and login to the app. Recall that [earlier in the migration process](xref:migration/mvc#migrate-the-layout-file) we commented out a reference to *_LoginPartial* in `_Layout.cshtml`. Now it's time to return to that code, uncomment it, and add in the necessary controllers and views to support login functionality. Uncomment the `@Html.Partial` line in `_Layout.cshtml`: ```cshtml
  • @Html.ActionLink("Contact", "Contact", "Home")
  • @*@Html.Partial("_LoginPartial")*@ ``` Now, add a new Razor view called *_LoginPartial* to the *Views/Shared* folder: Update `_LoginPartial.cshtml` with the following code (replace all of its contents): ```cshtml @inject SignInManager SignInManager @inject UserManager UserManager @if (SignInManager.IsSignedIn(User)) { } else { } ``` At this point, you should be able to refresh the site in your browser. ## Summary ASP.NET Core introduces changes to the ASP.NET Identity features. In this article, you have seen how to migrate the authentication and user management features of ASP.NET Identity to ASP.NET Core.