AspNetCore.Identity.Stores.AzureStorageAccount 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AspNetCore.Identity.Stores.AzureStorageAccount --version 1.0.0
NuGet\Install-Package AspNetCore.Identity.Stores.AzureStorageAccount -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AspNetCore.Identity.Stores.AzureStorageAccount" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AspNetCore.Identity.Stores.AzureStorageAccount --version 1.0.0
#r "nuget: AspNetCore.Identity.Stores.AzureStorageAccount, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AspNetCore.Identity.Stores.AzureStorageAccount as a Cake Addin
#addin nuget:?package=AspNetCore.Identity.Stores.AzureStorageAccount&version=1.0.0

// Install AspNetCore.Identity.Stores.AzureStorageAccount as a Cake Tool
#tool nuget:?package=AspNetCore.Identity.Stores.AzureStorageAccount&version=1.0.0

Azure Storage Account

This is how to use Azure storage account as storage for ASP.NET identity.

  1. Create a new ASP.NET Core Web App

  2. From Additional information dialog select authentication type Individual Accounts

  3. Install AspNetCore.Identity.Stores.AzureStorageAccount package from NuGet manager.

  4. In Startup.cs replace the code inside ConfigureServices method with the folowing code

    using AspNetCore.Identity.Stores;
    using AspNetCore.Identity.Stores.AzureStorageAccount.Extensions;
    
    //Adds data protection services, needed to protect the identity personal data
    services.AddDataProtection();
    
    //Configure identity repository connection
    services.Configure<IdentityStoresOptions>(options => options
        .UseAzureStorageAccount(Configuration.GetConnectionString("DefaultConnection")));
    
    services.AddDefaultIdentity<IdentityUser>(options => options.SignIn.RequireConfirmedAccount = true)
        .AddRoles<IdentityRole>()
        .AddAzureStorageAccountStores(); //Add Identity stores
    
    services.AddRazorPages();
    
  5. In appsettings.json update DefaultConnection with Azure Storage Account connection string

    NOTE: For local development you may use "UseDevelopmentStorage=true" as connection string to connect to Azure storage emulator.

Configuration

As shown in the code snippet from point 4, IdentityStoresOptions has an extension method UseAzureStorageAccount to configure the connection and it has 2 parameters:

  • connectionString: To specify the connection string of CosmosDB instance.
  • tableName (optinal): To specify the table which will be used, the default value is AspNetIdentity

Note: If the specified table not exists, it will get created on startup.

See more:

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 100 3/5/2024
2.1.0 687 10/13/2022
2.0.0 389 8/14/2022
1.1.0 424 5/17/2022
1.0.3 306 9/17/2021
1.0.2 298 9/2/2021
1.0.1 296 8/19/2021
1.0.0 551 7/31/2021