A client for Azure Table Storage that integrates with Aspire, including health checks, logging, and telemetry.
$ dotnet add package Aspire.Azure.Data.TablesRegisters TableServiceClient as a singleton in the DI container for connecting to Azure Table storage. Enables corresponding health check, logging and telemetry.
Install the .NET Aspire Azure Table storage library with NuGet:
dotnet add package Aspire.Azure.Data.Tables
In the Program.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.AddAzureTableClient("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.
The .NET 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.
When using a connection string from the configuration section, you can provide the name of the connection string when calling :
ConnectionStringsbuilder.AddAzureTableClient()builder.AddAzureTableClient("tableConnectionName");And then the connection information will be retrieved from the ConnectionStrings configuration section. Two connection formats are supported:
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/"
}
}Alternatively, an Azure Storage connection string can be used.
{
"ConnectionStrings": {
"tableConnectionName": "AccountName=myaccount;AccountKey=myaccountkey"
}
}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"
}
}
}
}
}
}
}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.AddAzureTableClient("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.AddAzureTableClient("tables", configureClientBuilder: clientBuilder => clientBuilder.ConfigureOptions(options => options.Diagnostics.ApplicationId = "myapp"));In your AppHost project, install the Aspire Azure Storage Hosting library with NuGet:
dotnet add package Aspire.Hosting.Azure.StorageThen, in the Program.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.AddAzureTableClient("tables");