Aspire.Azure.Search.Documents
9.0.0
Prefix Reserved
dotnet add package Aspire.Azure.Search.Documents --version 9.0.0
NuGet\Install-Package Aspire.Azure.Search.Documents -Version 9.0.0
<PackageReference Include="Aspire.Azure.Search.Documents" Version="9.0.0" />
paket add Aspire.Azure.Search.Documents --version 9.0.0
#r "nuget: Aspire.Azure.Search.Documents, 9.0.0"
// Install Aspire.Azure.Search.Documents as a Cake Addin #addin nuget:?package=Aspire.Azure.Search.Documents&version=9.0.0 // Install Aspire.Azure.Search.Documents as a Cake Tool #tool nuget:?package=Aspire.Azure.Search.Documents&version=9.0.0
Aspire.Azure.Search.Documents library
Registers SearchIndexClient as a singleton in the DI container for connecting to Azure AI Search. Enables corresponding logging and telemetry.
Getting started
Prerequisites
- Azure subscription - create one for free
- Azure AI Search Service - create an Azure AI Search Service resource
Install the package
Install the .NET Aspire Azure AI Search library with NuGet:
dotnet add package Aspire.Azure.Search.Documents
Usage example
In the Program.cs file of your project, call the AddAzureSearchClient
extension method to register an SearchIndexClient
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddAzureSearchClient("searchConnectionName");
You can then retrieve the SearchIndexClient
instance using dependency injection. For example, to retrieve the client from a Web API controller:
private readonly SearchIndexClient _indexClient;
public SearchController(SearchIndexClient indexClient)
{
_indexClient = indexClient;
}
You can also retrieve a SearchClient
which can be used for querying, by calling GetSearchClient(string indexName)
method on the SearchIndexClient
instance as follows:
private readonly SearchIndexClient _indexClient;
public SearchController(SearchIndexClient indexClient)
{
_indexClient = indexClient;
}
public async Task<long> GetDocumentCountAsync(string indexName, CancellationToken cancellationToken)
{
var searchClient = _indexClient.GetSearchClient(indexName);
var documentCountResponse = await searchClient.GetDocumentCountAsync(cancellationToken);
return documentCountResponse.Value;
}
See the Azure AI Search client library for .NET for examples on using the SearchIndexClient
.
Configuration
The .NET Aspire Azure AI Search library provides multiple options to configure the Azure AI Search Service based on the requirements and conventions of your project. Note that either an Endpoint
or a ConnectionString
is required to be supplied.
Use a connection string
A connection can be constructed from the Keys and Endpoint tab with the format Endpoint={endpoint};Key={key};
. You can provide the name of the connection string when calling builder.AddAzureSearchClient()
:
builder.AddAzureSearchClient("searchConnectionName");
And then the connection string will be retrieved from the ConnectionStrings
configuration section. Two connection formats are supported:
Account Endpoint
The recommended approach is to use an Endpoint, which works with the AzureSearchSettings.Credential
property to establish a connection. If no credential is configured, the DefaultAzureCredential is used.
{
"ConnectionStrings": {
"searchConnectionName": "https://{search_service}.search.windows.net/"
}
}
Connection string
Alternatively, a custom connection string can be used.
{
"ConnectionStrings": {
"searchConnectionName": "Endpoint=https://{search_service}.search.windows.net/;Key={account_key};"
}
}
Use configuration providers
The .NET Aspire Azure AI Search library supports Microsoft.Extensions.Configuration. It loads the AzureSearchSettings
and SearchClientOptions
from configuration by using the Aspire:Azure:Search:Documents
key. Example appsettings.json
that configures some of the options:
{
"Aspire": {
"Azure": {
"Search": {
"Documents": {
"DisableTracing": false,
}
}
}
}
}
Use inline delegates
You can also pass the Action<AzureSearchSettings> configureSettings
delegate to set up some or all the options inline, for example to disable tracing from code:
builder.AddAzureSearchClient("searchConnectionName", settings => settings.DisableTracing = true);
You can also setup the SearchClientOptions using the optional Action<IAzureClientBuilder<SearchIndexClient, SearchClientOptions>> configureClientBuilder
parameter of the AddAzureSearchClient
method. For example, to set the client ID for this client:
builder.AddAzureSearchClient("searchConnectionName", configureClientBuilder: builder => builder.ConfigureOptions(options => options.Diagnostics.ApplicationId = "CLIENT_ID"));
AppHost extensions
In your AppHost project, install the Aspire Azure AI Search Hosting library with NuGet:
dotnet add package Aspire.Hosting.Azure.Search
Then, in the Program.cs file of AppHost
, add an Azure AI Search service and consume the connection using the following methods:
var search = builder.ExecutionContext.IsPublishMode
? builder.AddAzureSearch("search")
: builder.AddConnectionString("search");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(search);
The AddAzureSearch
method adds an Azure AI Search resource to the builder. Or AddConnectionString
can be used to read connection information from the AppHost's configuration (for example, from "user secrets") under the ConnectionStrings:search
config key. The WithReference
method passes that connection information into a connection string named search
in the MyService
project. In the Program.cs file of MyService
, the connection can be consumed using:
builder.AddAzureSearchClient("search");
Additional documentation
- https://learn.microsoft.com/azure/search/search-howto-dotnet-sdk
- 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. |
-
net8.0
- Azure.Core (>= 1.44.1)
- Azure.Identity (>= 1.13.1)
- Azure.Search.Documents (>= 11.6.0)
- Microsoft.Extensions.Azure (>= 1.7.6)
- 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.11)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Options (>= 8.0.2)
- Microsoft.Extensions.Primitives (>= 8.0.0)
- OpenTelemetry.Extensions.Hosting (>= 1.9.0)
- System.Text.Json (>= 8.0.5)
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 |
---|---|---|
9.0.0 | 166 | 11/12/2024 |
9.0.0-rc.1.24511.1 | 63 | 10/15/2024 |
8.2.2 | 257 | 10/24/2024 |
8.2.1 | 1,329 | 9/26/2024 |
8.2.0 | 1,275 | 8/29/2024 |
8.1.0 | 882 | 7/23/2024 |
8.0.2 | 1,547 | 6/28/2024 |
8.0.1 | 1,169 | 5/21/2024 |
8.0.0 | 120 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 86 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 85 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 108 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 134 | 3/12/2024 |