Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount implements the ability to manage ASP.NET Core Identity using Azure Storage Accounts.
Released under the MIT License. See the LICENSE File for further details.
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);
}
}