CommunityToolkit.Aspire.RavenDB.Client 13.1.1

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package CommunityToolkit.Aspire.RavenDB.Client --version 13.1.1
                    
NuGet\Install-Package CommunityToolkit.Aspire.RavenDB.Client -Version 13.1.1
                    
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="CommunityToolkit.Aspire.RavenDB.Client" Version="13.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CommunityToolkit.Aspire.RavenDB.Client" Version="13.1.1" />
                    
Directory.Packages.props
<PackageReference Include="CommunityToolkit.Aspire.RavenDB.Client" />
                    
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 CommunityToolkit.Aspire.RavenDB.Client --version 13.1.1
                    
#r "nuget: CommunityToolkit.Aspire.RavenDB.Client, 13.1.1"
                    
#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 CommunityToolkit.Aspire.RavenDB.Client@13.1.1
                    
#: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=CommunityToolkit.Aspire.RavenDB.Client&version=13.1.1
                    
Install as a Cake Addin
#tool nuget:?package=CommunityToolkit.Aspire.RavenDB.Client&version=13.1.1
                    
Install as a Cake Tool

CommunityToolkit.Aspire.RavenDB.Client library

Registers IDocumentStore and the associated IDocumentSession and IAsyncDocumentSession instances in the DI container for connecting to a RavenDB database. Additionally, it enables health checks, metrics, logging, and telemetry.

Getting started

Prerequisites

  • RavenDB database and connection string for accessing the database or a running RavenDB server instance with its connection details, such as the server's URL and a valid certificate if required.

Note:
RavenDB allows creating an IDocumentStore without a defined database. In such cases, IDocumentSession and IAsyncDocumentSession will not be available. This library also supports creating a new RavenDB database. However, if you intend to connect to an existing RavenDB database, ensure the database exists and you have its connection details.

Install the package

Install the CommunityToolkit.Aspire.RavenDB.Client library with NuGet:

dotnet add package CommunityToolkit.Aspire.RavenDB.Client

To be added once the package is published.

Usage example

In the Program.cs file of your project, call the AddRavenDBClient extension method to register a IDocumentStore for use via the dependency injection container. The method takes a connection name parameter.

builder.AddRavenDBClient("ravendb");

You can then retrieve a IDocumentStore instance using dependency injection, for example:

public class MyService
{
    private readonly IDocumentStore _documentStore;
    public MyService(IDocumentStore documentStore)
    {
        _documentStore = documentStore;
    }

    // Your logic here
}

Configuration

The .NET Aspire RavenDB Client component provides multiple options to configure the server connection based on the requirements and conventions of your project.

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.AddRavenDBClient():

builder.AddRavenDBClient("ravendb");

And then the connection string will be retrieved from the ConnectionStrings configuration section:

{
  "ConnectionStrings": {
    "ravendb": "URL=http://localhost:8080;Database=ravenDatabase"
  }
}

Use configuration providers

The .NET Aspire RavenDB Client component supports Microsoft.Extensions.Configuration. It loads the RavenDBClientSettings from configuration by using the Aspire:RavenDB:Client key.

Use inline delegates

Also you can pass the Action<RavenDBClientSettings> configureSettings delegate to set up some or all the options inline, for example to set the database name and certificate from code:

builder.AddRavenDBClient("ravendb", settings => 
{
    settings.DatabaseName = "ravenDatabase"; 
    settings.Certificate = ravenCertificate;
});

Use RavenDBClientSettings Class

The RavenDBClientSettings class simplifies configuration by allowing you to specify:

  • URLs of your RavenDB nodes.
  • Database name to connect to or create.
  • Certificate details (via CertificatePath and CertificatePassword or Certificate).
  • Optional actions to modify the IDocumentStore.

Example for creating a new database on a local unsecured RavenDB server:

var settings = new RavenDBClientSettings(new[] { �http://127.0.0.1:8080� }, �NorthWind�)
{
	CreateDatabase = true;
};
builder.AddRavenDBClient(settings);

You can also configure:

  • DisableHealthChecks to disable health checks.
  • HealthCheckTimeout to set the timeout for health checks.
  • DisableTracing to disable OpenTelemetry tracing.

AppHost extensions

Install the CommunityToolkit.Aspire.Hosting.RavenDB Library

Install the CommunityToolkit.Aspire.Hosting.RavenDB library with NuGet:

dotnet add package CommunityToolkit.Aspire.Hosting.RavenDB

To be added once the package is published.

Usage in AppHost

In your AppHost's Program.cs file, register a RavenDB server resource and consume the connection using the following methods:

var ravendb = builder.AddRavenDB("ravendb");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(ravendb);

The WithReference method configures a connection in the MyService project named ravendb. In the Program.cs file of MyService, the RavenDB connection can be consumed using:

builder.AddRavenDBClient("ravendb");

Additional Documentation

Feedback & Contributing

https://github.com/CommunityToolkit/Aspire

Product 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. 
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
13.1.2-beta.516 0 2/9/2026
13.1.2-beta.515 44 2/2/2026
13.1.2-beta.514 46 1/30/2026
13.1.2-beta.513 44 1/29/2026
13.1.2-beta.512 44 1/29/2026
13.1.2-beta.511 46 1/28/2026
13.1.2-beta.509 47 1/20/2026
13.1.2-beta.508 46 1/19/2026
13.1.2-beta.507 42 1/19/2026
13.1.2-beta.506 40 1/16/2026
13.1.2-beta.505 45 1/16/2026
13.1.2-beta.504 43 1/16/2026
13.1.1 633 1/16/2026
13.1.1-beta.502 46 1/16/2026
13.1.0 93 1/14/2026
13.1.0-beta.499 43 1/14/2026
13.0.1-beta.498 50 1/14/2026
13.0.1-beta.486 44 1/12/2026
13.0.1-beta.468 641 12/3/2025
13.0.1-beta.467 634 12/3/2025
13.0.0 1,330 11/25/2025
13.0.0-beta.462 151 11/25/2025
13.0.0-beta.456 152 11/23/2025
13.0.0-beta.454 102 11/23/2025
13.0.0-beta.453 121 11/22/2025
13.0.0-beta.450 129 11/22/2025
13.0.0-beta.448 128 11/22/2025
13.0.0-beta.444 355 11/17/2025
13.0.0-beta.443 266 11/17/2025
13.0.0-beta.440 104 11/15/2025
13.0.0-beta.439 242 11/12/2025
13.0.0-beta.438 236 11/12/2025
13.0.0-beta.436 240 11/12/2025
13.0.0-beta.435 250 11/11/2025
13.0.0-beta.433 173 11/10/2025
13.0.0-beta.432 168 11/10/2025
13.0.0-beta.431 161 11/6/2025
13.0.0-beta.430 160 11/6/2025
9.9.0 363 11/3/2025
9.9.0-beta.427 183 11/3/2025
9.8.1-beta.426 158 11/3/2025
9.8.1-beta.424 159 10/28/2025
9.8.1-beta.420 147 10/27/2025
9.8.1-beta.419 149 10/27/2025
9.8.1-beta.417 153 10/27/2025
9.8.1-beta.414 139 10/24/2025
9.8.1-beta.413 141 10/22/2025
9.8.1-beta.410 142 10/16/2025
9.8.1-beta.408 129 10/16/2025
9.8.1-beta.407 135 10/16/2025
9.8.1-beta.406 141 10/15/2025
9.8.0 8,209 9/26/2025
9.8.0-beta.405 139 10/15/2025
9.8.0-beta.404 140 10/13/2025
9.8.0-beta.402 149 9/29/2025
9.8.0-beta.401 139 9/29/2025
9.8.0-beta.399 140 9/26/2025
9.8.0-beta.398 145 9/25/2025
9.8.0-beta.397 153 9/25/2025
9.8.0-beta.395 142 9/24/2025
9.8.0-beta.394 148 9/23/2025
9.8.0-beta.393 151 9/23/2025
9.8.0-beta.392 156 9/23/2025
9.8.0-beta.389 274 9/18/2025
9.8.0-beta.388 284 9/16/2025
9.8.0-beta.386 222 9/15/2025
9.8.0-beta.385 222 9/15/2025
9.8.0-beta.384 78 9/13/2025
9.8.0-beta.376 160 9/8/2025
9.8.0-beta.375 95 9/6/2025
9.8.0-beta.373 156 9/5/2025
9.8.0-beta.372 161 9/4/2025
9.8.0-beta.370 150 9/2/2025
9.8.0-beta.364 149 9/1/2025
9.7.2 425 8/29/2025
9.7.2-beta.362 194 8/29/2025
9.7.2-beta.361 191 8/29/2025
9.7.2-beta.360 193 8/29/2025
9.7.2-beta.359 193 8/28/2025
9.7.2-beta.358 187 8/28/2025
9.7.2-beta.357 188 8/28/2025
9.7.1 276 8/27/2025
9.7.1-beta.355 196 8/27/2025
9.7.1-beta.354 194 8/27/2025
9.7.1-beta.353 199 8/27/2025
9.7.1-beta.352 198 8/27/2025
9.7.1-beta.351 206 8/27/2025
9.7.1-beta.348 161 8/14/2025
9.7.1-beta.344 97 8/10/2025
9.7.1-beta.343 214 8/8/2025
9.7.1-beta.342 224 8/7/2025
9.7.1-beta.341 223 8/6/2025
9.7.1-beta.340 215 8/5/2025
9.7.1-beta.339 209 8/5/2025
9.7.0 2,156 8/1/2025
9.7.0-beta.337 107 8/1/2025
9.7.0-beta.336 130 8/1/2025
9.7.0-beta.335 127 8/1/2025
9.7.0-beta.333 131 7/30/2025
9.6.1-beta.332 122 7/30/2025
9.6.1-beta.331 124 7/30/2025
9.6.1-beta.330 121 7/30/2025
9.6.1-beta.329 134 7/30/2025
9.6.1-beta.328 137 7/29/2025
9.6.1-beta.327 139 7/28/2025
9.6.1-beta.326 148 7/28/2025
9.6.0 759 7/10/2025
9.6.0-beta.324 158 7/10/2025
9.5.1-beta.323 152 7/10/2025
9.5.1-beta.322 143 7/10/2025
9.5.1-beta.321 146 7/10/2025
9.5.1-beta.320 154 7/9/2025
9.5.1-beta.319 154 7/8/2025
9.5.1-beta.318 148 7/2/2025
9.5.1-beta.317 139 6/30/2025
9.5.1-beta.315 154 6/26/2025
9.5.1-beta.314 158 6/23/2025
9.5.1-beta.313 137 6/20/2025
9.5.1-beta.312 146 6/20/2025
9.5.1-beta.311 183 6/18/2025
9.5.1-beta.310 153 6/17/2025
9.5.1-beta.309 155 6/17/2025
9.5.1-beta.308 168 6/17/2025
9.5.1-beta.307 171 6/16/2025
9.5.1-beta.306 301 6/11/2025
9.5.1-beta.305 119 6/7/2025
9.5.1-beta.304 138 6/6/2025
9.5.1-beta.303 154 6/4/2025
9.5.1-beta.302 174 6/4/2025
9.5.1-beta.301 152 6/2/2025
9.5.1-beta.300 182 5/28/2025
9.5.0 1,393 5/27/2025
9.5.0-beta.299 152 5/27/2025
9.5.0-beta.298 150 5/26/2025
9.5.0-beta.297 108 5/24/2025
9.5.0-beta.296 94 5/24/2025
9.5.0-beta.295 76 5/24/2025
9.4.1-beta.291 149 5/19/2025
9.4.1-beta.289 174 5/16/2025
9.4.1-beta.288 221 5/16/2025
9.4.1-beta.287 231 5/16/2025
9.4.1-beta.286 213 5/16/2025
9.4.1-beta.285 247 5/14/2025
9.4.1-beta.284 259 5/13/2025
9.4.1-beta.283 232 5/12/2025
9.4.1-beta.282 165 5/7/2025
9.4.1-beta.280 144 5/2/2025
9.4.1-beta.279 158 5/2/2025
9.4.1-beta.277 173 4/23/2025
9.4.1-beta.276 164 4/23/2025
9.4.1-beta.275 169 4/23/2025
9.4.1-beta.274 177 4/23/2025
9.4.1-beta.273 196 4/23/2025
9.4.1-beta.272 160 4/23/2025
9.4.1-beta.271 175 4/23/2025
9.4.1-beta.270 161 4/20/2025
9.4.0 1,564 4/20/2025
9.4.0-beta.269 179 4/20/2025
9.4.0-beta.268 171 4/20/2025
9.3.1-beta.267 171 4/20/2025
9.3.1-beta.266 88 4/19/2025
9.3.1-beta.265 203 4/15/2025
9.3.1-beta.264 217 4/15/2025
9.3.1-beta.263 202 4/15/2025
9.3.1-beta.262 212 4/15/2025
9.3.1-beta.260 170 4/10/2025
9.3.1-beta.259 169 4/8/2025
9.3.1-beta.258 195 4/8/2025
9.3.1-beta.257 205 4/8/2025
9.3.1-beta.256 172 4/8/2025
9.3.1-beta.255 178 4/8/2025
9.3.1-beta.254 180 4/8/2025
9.3.1-beta.253 199 4/1/2025
9.3.1-beta.252 181 3/27/2025
9.3.1-beta.250 152 3/27/2025
9.3.1-beta.249 147 3/27/2025
9.3.1-beta.248 150 3/27/2025
9.3.1-beta.247 177 3/27/2025
9.3.1-beta.244 524 3/25/2025
9.3.1-beta.242 499 3/24/2025
9.3.1-beta.241 183 3/19/2025
9.3.0 317 3/19/2025
9.3.0-beta.239 162 3/19/2025
9.2.2-beta.237 155 3/19/2025
9.2.2-beta.236 135 3/14/2025
9.2.2-beta.230 188 3/13/2025
9.2.2-beta.229 155 3/13/2025
9.2.2-beta.228 171 3/11/2025
9.2.2-beta.227 166 3/11/2025
9.2.2-beta.226 168 3/11/2025
9.2.2-beta.225 190 3/11/2025
9.2.2-beta.224 188 3/11/2025
9.2.2-beta.223 163 3/10/2025
9.2.2-beta.222 193 3/10/2025
9.2.2-beta.220 202 3/9/2025
9.2.2-beta.218 175 3/9/2025
9.2.2-beta.217 207 3/7/2025
9.2.2-beta.216 228 3/7/2025
9.2.2-beta.215 215 3/7/2025
9.2.2-beta.214 212 3/5/2025
9.2.2-beta.213 196 3/5/2025
9.2.2-beta.212 205 3/5/2025
9.2.2-beta.211 246 3/4/2025
9.2.2-beta.210 225 3/4/2025
9.2.2-beta.208 138 3/3/2025
9.2.1 185 3/3/2025
9.2.1-beta.207 154 3/2/2025
9.2.1-beta.206 95 3/1/2025
9.2.1-beta.205 106 2/27/2025
9.2.1-beta.204 104 2/26/2025
9.2.1-beta.203 122 2/26/2025
9.2.0 184 2/26/2025
9.2.0-beta.202 95 2/26/2025
9.2.0-beta.201 105 2/26/2025
9.2.0-beta.199 111 2/26/2025
9.2.0-beta.198 94 2/26/2025
9.1.1-beta.197 110 2/25/2025
9.1.1-beta.196 122 2/25/2025
9.1.1-beta.195 98 2/25/2025
9.1.1-beta.194 131 2/25/2025
9.1.1-beta.193 96 2/25/2025
9.1.1-beta.192 102 2/24/2025
9.1.1-beta.191 128 2/24/2025
9.1.1-beta.190 127 2/19/2025
9.1.1-beta.189 127 2/19/2025
9.1.1-beta.188 131 2/19/2025
9.1.1-beta.187 116 2/19/2025
9.1.1-beta.183 120 2/18/2025
9.1.1-beta.182 108 2/18/2025
9.1.1-beta.181 128 2/18/2025
9.1.1-beta.180 112 2/17/2025
9.1.1-beta.178 150 2/17/2025
9.1.1-beta.177 116 2/12/2025
9.1.1-beta.176 111 2/11/2025
9.1.1-beta.175 105 2/11/2025
9.1.1-beta.173 117 2/10/2025