Skip to content

joncloud/aspnet-identity-azure-storageaccount

Repository files navigation

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);
  }
}

About

Implements ASP.NET Core Identity using Azure Storage Account

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages