Krebil.UmbracoAzureSearch 1.0.2

dotnet add package Krebil.UmbracoAzureSearch --version 1.0.2
                    
NuGet\Install-Package Krebil.UmbracoAzureSearch -Version 1.0.2
                    
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="Krebil.UmbracoAzureSearch" Version="1.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Krebil.UmbracoAzureSearch" Version="1.0.2" />
                    
Directory.Packages.props
<PackageReference Include="Krebil.UmbracoAzureSearch" />
                    
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 Krebil.UmbracoAzureSearch --version 1.0.2
                    
#r "nuget: Krebil.UmbracoAzureSearch, 1.0.2"
                    
#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 Krebil.UmbracoAzureSearch@1.0.2
                    
#: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=Krebil.UmbracoAzureSearch&version=1.0.2
                    
Install as a Cake Addin
#tool nuget:?package=Krebil.UmbracoAzureSearch&version=1.0.2
                    
Install as a Cake Tool

Krebil.UmbracoAzureSearch

An Azure AI Search provider for Umbraco Search.

NuGet

Note: Umbraco Search is a work in progress. Things might change at a moment's notice.

Prerequisites

Installation

Install the core Umbraco Search package and this provider:

dotnet add package Umbraco.Cms.Search.Core
dotnet add package Krebil.UmbracoAzureSearch

Configuration

Add your Azure AI Search credentials to appsettings.json:

{
  "UmbracoAzureSearch": {
    "Endpoint": "https://your-search-service.search.windows.net",
    "Key": "your-api-key"
  }
}

Registration

Register the services via a composer:

public sealed class SearchComposer : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.AddSearchCore();
        builder.Services.AddUmbracoAzureSearch(builder.Config);
    }
}

Usage

Inject IAzureSearchSearcher (or ISearcherResolver to resolve it by index alias) and call SearchAsync. See the Umbraco Search documentation for the full API: filtering, faceting, sorting, pagination, culture/segment variants, and protected content all work the same way.

public class MySearchService(IAzureSearchSearcher searcher)
{
    public async Task<SearchResult> SearchAsync(string query)
        => await searcher.SearchAsync(
            indexAlias: SearchConstants.IndexAliases.PublishedContent,
            query: query,
            filters:
            [
                new KeywordFilter("genre", ["rock", "pop"], Negate: false)
            ],
            facets:
            [
                new KeywordFacet("genre"),
                new IntegerRangeFacet("releaseYear",
                [
                    new("50s", 1950, 1960),
                    new("80s", 1980, 1990)
                ])
            ],
            sorters:
            [
                new IntegerSorter("releaseYear", Direction.Descending)
            ],
            skip: 0,
            take: 10
        );
}

Azure AI Search limitations

  • No guaranteed ordering without an explicit sort — always provide a sorter when result order matters.
  • No multiple facet types on the same field — e.g. IntegerExactFacet and IntegerRangeFacet cannot both be applied to the same field in a single query. The provider works around this internally by running a separate query per field, so mixed facet types across different fields work fine.
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

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
1.0.2 123 6/24/2026
1.0.1 101 6/24/2026
1.0.0 104 6/24/2026
1.0.0-beta.8 152 6/2/2026
1.0.0-beta.5 58 6/1/2026
1.0.0-beta.4 64 6/1/2026
1.0.0-beta.3 89 5/27/2026
1.0.0-beta.2 67 5/26/2026
1.0.0-beta.1 105 4/24/2026
1.0.0-alpha.2 78 3/10/2026
1.0.0-alpha.1 79 3/2/2026