Aspire.Azure.Data.Tables
13.1.0
Prefix Reserved
dotnet add package Aspire.Azure.Data.Tables --version 13.1.0
NuGet\Install-Package Aspire.Azure.Data.Tables -Version 13.1.0
<PackageReference Include="Aspire.Azure.Data.Tables" Version="13.1.0" />
<PackageVersion Include="Aspire.Azure.Data.Tables" Version="13.1.0" />
<PackageReference Include="Aspire.Azure.Data.Tables" />
paket add Aspire.Azure.Data.Tables --version 13.1.0
#r "nuget: Aspire.Azure.Data.Tables, 13.1.0"
#:package Aspire.Azure.Data.Tables@13.1.0
#addin nuget:?package=Aspire.Azure.Data.Tables&version=13.1.0
#tool nuget:?package=Aspire.Azure.Data.Tables&version=13.1.0
Aspire.Azure.Data.Tables library
Registers TableServiceClient as a singleton in the DI container for connecting to Azure Table storage. Enables corresponding health check, logging and telemetry.
Getting started
Prerequisites
- Azure subscription - create one for free
- An Azure storage account or Azure Cosmos DB database with Azure Table API specified. - create a storage account
Install the package
Install the Aspire Azure Table storage library with NuGet:
dotnet add package Aspire.Azure.Data.Tables
Usage example
In the AppHost.cs file of your project, call the AddAzureTableClient extension method to register a TableServiceClient for use via the dependency injection container. The method takes a connection name parameter.
builder.AddAzureTableServiceClient("tables");
You can then retrieve the TableServiceClient instance using dependency injection. For example, to retrieve the client from a Web API controller:
private readonly TableServiceClient _client;
public ProductsController(TableServiceClient client)
{
_client = client;
}
See the Azure.Data.Tables documentation for examples on using the TableServiceClient.
Configuration
The Aspire Azure Table storage library provides multiple options to configure the Azure Table connection based on the requirements and conventions of your project. Note that either a ServiceUri or a ConnectionString is a required to be supplied.
Use a connection string
When using a connection string from the ConnectionStrings configuration section, you can provide the name of the connection string when calling builder.AddAzureTableServiceClient():
builder.AddAzureTableServiceClient("tableConnectionName");
And then the connection information will be retrieved from the ConnectionStrings configuration section. Two connection formats are supported:
Service URI
The recommended approach is to use a ServiceUri, which works with the AzureDataTablesSettings.Credential property to establish a connection. If no credential is configured, the DefaultAzureCredential is used.
{
"ConnectionStrings": {
"tableConnectionName": "https://{account_name}.table.core.windows.net/"
}
}
Connection string
Alternatively, an Azure Storage connection string can be used.
{
"ConnectionStrings": {
"tableConnectionName": "AccountName=myaccount;AccountKey=myaccountkey"
}
}
Use configuration providers
The Azure Table storage library supports Microsoft.Extensions.Configuration. It loads the AzureDataTablesSettings and TableClientOptions from configuration by using the Aspire:Azure:Data:Tables key. Example appsettings.json that configures some of the options:
{
"Aspire": {
"Azure": {
"Data": {
"Tables": {
"DisableHealthChecks": true,
"DisableTracing": false,
"ClientOptions": {
"Diagnostics": {
"ApplicationId": "myapp"
}
}
}
}
}
}
}
Use inline delegates
You can also pass the Action<AzureDataTablesSettings> configureSettings delegate to set up some or all the options inline, for example to disable health checks from code:
builder.AddAzureTableServiceClient("tables", settings => settings.DisableHealthChecks = true);
You can also setup the TableClientOptions using the optional Action<IAzureClientBuilder<TableServiceClient, TableClientOptions>> configureClientBuilder parameter of the AddAzureTableClient method. For example, to set the first part of "User-Agent" headers for all requests issues by this client:
builder.AddAzureTableServiceClient("tables", configureClientBuilder: clientBuilder => clientBuilder.ConfigureOptions(options => options.Diagnostics.ApplicationId = "myapp"));
AppHost extensions
In your AppHost project, install the Aspire Azure Storage Hosting library with NuGet:
dotnet add package Aspire.Hosting.Azure.Storage
Then, in the AppHost.cs file of AppHost, add a Table Storage connection and consume the connection using the following methods:
var tables = builder.ExecutionContext.IsPublishMode
? builder.AddAzureStorage("storage").AddTables("tables")
: builder.AddConnectionString("tables");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(tables);
The AddTables method will add an Azure Storage table resource to the builder. Or AddConnectionString can be used to read the connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:tables config key. The WithReference method passes that connection information into a connection string named tables in the MyService project. In the Program.cs file of MyService, the connection can be consumed using:
builder.AddAzureTableServiceClient("tables");
Additional documentation
- https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/tables/Azure.Data.Tables/README.md
- https://github.com/dotnet/aspire/tree/main/src/Components/README.md
Feedback & contributing
| Product | Versions 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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. |
-
net10.0
- AspNetCore.HealthChecks.Azure.Data.Tables (>= 9.0.0)
- Azure.Core (>= 1.50.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Identity (>= 1.17.0)
- Microsoft.Extensions.Azure (>= 1.13.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 10.0.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.1)
- Microsoft.Extensions.Options (>= 10.0.1)
- Microsoft.Extensions.Primitives (>= 10.0.1)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
-
net8.0
- AspNetCore.HealthChecks.Azure.Data.Tables (>= 9.0.0)
- Azure.Core (>= 1.50.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Identity (>= 1.17.0)
- Microsoft.Extensions.Azure (>= 1.13.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.22)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
-
net9.0
- AspNetCore.HealthChecks.Azure.Data.Tables (>= 9.0.0)
- Azure.Core (>= 1.50.0)
- Azure.Data.Tables (>= 12.11.0)
- Azure.Identity (>= 1.17.0)
- Microsoft.Extensions.Azure (>= 1.13.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.11)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 9.0.11)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.11)
- Microsoft.Extensions.Options (>= 9.0.11)
- Microsoft.Extensions.Primitives (>= 9.0.11)
- OpenTelemetry.Extensions.Hosting (>= 1.14.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Aspire.Azure.Data.Tables:
| Package | Downloads |
|---|---|
|
Nabs.Launchpad.Core.Silo
Package Description |
|
|
Nabs.Launchpad.Core.SiloClient
Package Description |
|
|
AspireToolKit.Hosting.Testing.Extensions
Extensions for .NET Aspire integration testing to simplify and improve the user experience when testing. |
|
|
AspireToolKit
All AspireToolKit packages bundled together. |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on Aspire.Azure.Data.Tables:
| Repository | Stars |
|---|---|
|
microsoft/AzUrlShortener
An simple and easy Url Shortener
|
|
|
J-Tech-Japan/Sekiban
Sekiban - an Opinionated Event Sourcing and CQRS Framework using C#. It can store data into Azure Cosmos DB, AWS Dynamo DB or Postgres
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 13.1.0 | 11,937 | 12/17/2025 | |
| 13.0.2 | 13,805 | 12/4/2025 | |
| 13.0.1 | 7,708 | 11/26/2025 | |
| 13.0.0 | 22,659 | 11/11/2025 | |
| 9.5.2 | 30,677 | 10/23/2025 | |
| 9.5.1 | 16,451 | 10/3/2025 | |
| 9.5.0 | 13,751 | 9/25/2025 | |
| 9.4.2 | 36,056 | 9/2/2025 | |
| 9.4.1 | 54,470 | 8/12/2025 | |
| 9.4.0 | 38,711 | 7/29/2025 | |
| 9.3.1 | 54,554 | 6/10/2025 | |
| 9.3.0 | 32,949 | 5/19/2025 | |
| 9.2.1 | 31,429 | 4/24/2025 | |
| 9.2.0 | 25,025 | 4/10/2025 | |
| 9.1.0 | 49,291 | 2/25/2025 | |
| 9.0.0 | 64,073 | 11/12/2024 | |
| 9.0.0-rc.1.24511.1 | 1,546 | 10/15/2024 | |
| 8.2.2 | 31,718 | 10/24/2024 | |
| 8.2.1 | 31,114 | 9/26/2024 | |
| 8.2.0 | 33,648 | 8/29/2024 | |
| 8.1.0 | 25,008 | 7/23/2024 | |
| 8.0.2 | 22,403 | 6/28/2024 | |
| 8.0.1 | 43,539 | 5/21/2024 | |
| 8.0.0 | 18,512 | 5/21/2024 | |
| 8.0.0-preview.7.24251.11 | 346 | 5/7/2024 | |
| 8.0.0-preview.6.24214.1 | 2,845 | 4/23/2024 | |
| 8.0.0-preview.5.24201.12 | 665 | 4/9/2024 | |
| 8.0.0-preview.4.24156.9 | 854 | 3/12/2024 | |
| 8.0.0-preview.3.24105.21 | 1,086 | 2/13/2024 | |
| 8.0.0-preview.2.23619.3 | 729 | 12/20/2023 | |
| 8.0.0-preview.1.23557.2 | 606 | 11/14/2023 |