AspNetCore.Identity.Stores.AzureCosmosDB 3.0.0

dotnet add package AspNetCore.Identity.Stores.AzureCosmosDB --version 3.0.0
NuGet\Install-Package AspNetCore.Identity.Stores.AzureCosmosDB -Version 3.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.AzureCosmosDB" Version="3.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AspNetCore.Identity.Stores.AzureCosmosDB --version 3.0.0
#r "nuget: AspNetCore.Identity.Stores.AzureCosmosDB, 3.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.AzureCosmosDB as a Cake Addin
#addin nuget:?package=AspNetCore.Identity.Stores.AzureCosmosDB&version=3.0.0

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

Azure Cosmos DB

This is how to use Azure Cosmos DB 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.AzureCosmosDB package from NuGet manager

    <code>Install-Package AspNetCore.Identity.Stores.AzureCosmosDB</code>

  4. In Program.cs replace DbContext and Identity initialization with the folowing code

    using AspNetCore.Identity.Stores;
    using AspNetCore.Identity.Stores.AzureCosmosDB.Extensions;
    
    var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");
    //Configure identity repository connection
    builder.Services.Configure<IdentityStoresOptions>(options => options
                    .UseAzureCosmosDB(connectionString, databaseId: "MyDatabase"));
    
    builder.Services.AddDefaultIdentity<IdentityUser>(options => options.SignIn.RequireConfirmedAccount = true)
                    .AddRoles<IdentityRole>()
                    .AddAzureCosmosDbStores(); //Add Identity stores
    
  5. In appsettings.json update DefaultConnection with Azure Cosmos DB connection string.

Configuration

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

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

Note: If the specified database or container not exist, they will get created on startup if UseIdentitySeedingAsync is user, otherwise an exception will be thrown.

See more:

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 726 3/5/2024
2.1.0 3,621 10/13/2022
2.0.0 536 8/14/2022
1.1.0 2,077 5/17/2022
1.0.3 1,021 9/17/2021
1.0.2 279 9/2/2021
1.0.1 274 8/19/2021
1.0.0 347 8/1/2021