Skip to content

ASP.NET Core Identity Bulk allows you to perform bulk ASP.NET Core Identity operations.

License

Notifications You must be signed in to change notification settings

tnc1997/asp-net-core-identity-bulk

ASP.NET Core Identity Bulk

ASP.NET Core Identity Bulk allows you to perform bulk ASP.NET Core Identity operations.

Getting Started

  1. Add the Identity services to your application.

    builder.Services.AddIdentity<ApplicationUser, ApplicationRole>();
  2. Install the Identity Bulk package.

    dotnet add package Tnc1997.AspNetCore.Identity.Bulk
  3. Add the Identity Bulk services to your application.

    builder.Services.AddIdentity<ApplicationUser, ApplicationRole>()
        .AddBulk();

Entity Framework Core

  1. Install the Identity Entity Framework Core package.

    dotnet add package Microsoft.AspNetCore.Identity.EntityFrameworkCore
  2. Add the Entity Framework stores to your application.

    builder.Services.AddIdentity<ApplicationUser, ApplicationRole>()
        .AddBulk()
        .AddEntityFrameworkStores<ApplicationDbContext>();
  3. Install the Identity Bulk Entity Framework Core package.

    dotnet add package Tnc1997.AspNetCore.Identity.Bulk.EntityFrameworkCore
  4. Add the Bulk Entity Framework stores to your application.

    builder.Services.AddIdentity<ApplicationUser, ApplicationRole>()
        .AddBulk()
        .AddBulkEntityFrameworkStores<ApplicationDbContext>()
        .AddEntityFrameworkStores<ApplicationDbContext>();

About

ASP.NET Core Identity Bulk allows you to perform bulk ASP.NET Core Identity operations.

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Languages