IBeam.Identity.Repositories.AzureTable 2.0.56

There is a newer version of this package available.
See the version list below for details.
dotnet add package IBeam.Identity.Repositories.AzureTable --version 2.0.56
                    
NuGet\Install-Package IBeam.Identity.Repositories.AzureTable -Version 2.0.56
                    
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="IBeam.Identity.Repositories.AzureTable" Version="2.0.56" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="IBeam.Identity.Repositories.AzureTable" Version="2.0.56" />
                    
Directory.Packages.props
<PackageReference Include="IBeam.Identity.Repositories.AzureTable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add IBeam.Identity.Repositories.AzureTable --version 2.0.56
                    
#r "nuget: IBeam.Identity.Repositories.AzureTable, 2.0.56"
                    
#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.
#:package IBeam.Identity.Repositories.AzureTable@2.0.56
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=IBeam.Identity.Repositories.AzureTable&version=2.0.56
                    
Install as a Cake Addin
#tool nuget:?package=IBeam.Identity.Repositories.AzureTable&version=2.0.56
                    
Install as a Cake Tool

IBeam.Identity.Repositories.AzureTable

Azure Table Storage provider for IBeam identity store contracts.

Narrative Introduction

This package connects identity orchestration to Azure Table persistence. It wires ASP.NET Core Identity + ElCamino Azure Table stores, registers IBeam store abstractions, and includes schema initialization so hosts can start with minimal persistence setup.

Features and Components

  • DI extension:
    • AddIBeamIdentityAzureTable(IConfiguration)
  • Azure Table option binding and validation (AzureTableIdentityOptions)
  • Identity store registrations for:
    • users
    • auth identifier lookup bindings
    • tenants and memberships
    • tenant roles and user-role assignments
    • permission role-mapping store (IPermissionAccessStore)
    • OTP challenges
    • external logins
    • auth sessions
  • schema management services:
    • IIdentitySchemaManager
    • hosted schema bootstrap

Dependencies

  • Internal packages:
    • IBeam.Identity.Services
  • External packages:
    • ElCamino.AspNetCore.Identity.AzureTable
    • System.IdentityModel.Tokens.Jwt
    • Microsoft.AspNetCore.App framework reference

Configuration

Primary section:

  • IBeam:Identity:AzureTable

Includes connection-string fallback resolution across IBeam:* and ConnectionStrings:* keys.

Auth Identifier Index

The Azure Table provider keeps the canonical user in ElCamino's AspNetUsers table, but auth lookup is routed through a provider-owned AuthIdentifiers table.

Key shape:

PartitionKey = AUTH|EMAIL|ADAM@TEST.COM
RowKey       = USER
UserId       = {guid}

PartitionKey = AUTH|SMS|16145551212
RowKey       = USER
UserId       = {same-guid}

Why this matters:

  • Email OTP, SMS OTP, and email/password can all resolve to the same UserId.
  • Adding or changing email/SMS does not require moving the user row.
  • Authorization remains fast because tenant membership is still loaded by USR|{userId}.
  • SMS auth no longer needs to scan the user table by PhoneNumber.

The schema bootstrap creates AuthIdentifiers with the other custom identity tables. New create/update flows maintain bindings automatically.

Table Set

  • AspNetUsers, AspNetRoles, AspNetIndex: ElCamino identity tables.
  • AuthIdentifiers: email/SMS auth lookup bindings to UserId.
  • Tenants, TenantUsers, UserTenants, TenantRoles: tenant and role membership.
  • PermissionRoleMaps: tenant permission-to-role bindings.
  • OtpChallenges: OTP challenge state.
  • ExternalLogins: OAuth provider-user links.
  • AuthSessions, AuthAttempts: session and lockout state.
  • SystemLogs, SystemErrors, Schema: operational records.

Connection String Cascade

Identity AzureTable provider resolves connection string with fallback precedence:

  1. IBeam:Identity:AzureTable:StorageConnectionString
  2. IBeam:AzureTables
  3. IBeam:Repositories:ConnectionString
  4. IBeam:ConnectionString
  5. ConnectionStrings:AzureTables
  6. ConnectionStrings:AzureStorage
  7. ConnectionStrings:IBeam
  8. ConnectionStrings:DefaultConnection
  9. ConnectionStrings:IdentityAzureTable
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on IBeam.Identity.Repositories.AzureTable:

Package Downloads
IBeam.Identity.Api

IBeam modular framework components for .NET APIs and services.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.57 0 6/8/2026
2.0.56 48 6/7/2026
2.0.54 120 5/27/2026
2.0.52 113 5/27/2026
2.0.35 141 5/15/2026
2.0.32 256 3/25/2026
2.0.30 111 3/25/2026
2.0.29 107 3/25/2026
2.0.28 108 3/25/2026
2.0.26 107 3/25/2026
2.0.22 112 3/25/2026