/aspnet-identity-azure-storageaccount

Implements ASP.NET Core Identity using Azure Storage Account

Primary LanguageC#MIT LicenseMIT

Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount

NuGet

Description

Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount implements the ability to manage ASP.NET Core Identity using Azure Storage Accounts.

Licensing

Released under the MIT License. See the LICENSE File for further details.

Usage

public class Startup {
  public void ConfigureServices(IServiceCollection services) {
    var connectionString = "UseDevelopmentStorage=true"; // Swap out for production connection string
    services.AddDefaultIdentity<IdentityUser>()
      .AddRoles<IdentityRole>()
      .AddAzureStorageAccountStores(connectionString);
  }
}