CommunityToolkit.Aspire.RavenDB.Client 13.0.0

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.0.0
                    
NuGet\Install-Package CommunityToolkit.Aspire.RavenDB.Client -Version 13.0.0
                    
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.0.0" />
                    
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.0.0" />
                    
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.0.0
                    
#r "nuget: CommunityToolkit.Aspire.RavenDB.Client, 13.0.0"
                    
#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.0.0
                    
#: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.0.0
                    
Install as a Cake Addin
#tool nuget:?package=CommunityToolkit.Aspire.RavenDB.Client&version=13.0.0
                    
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.0.1-beta.486 23 1/12/2026
13.0.1-beta.468 628 12/3/2025
13.0.1-beta.467 623 12/3/2025
13.0.0 1,199 11/25/2025
13.0.0-beta.462 144 11/25/2025
13.0.0-beta.456 143 11/23/2025
13.0.0-beta.454 91 11/23/2025
13.0.0-beta.453 114 11/22/2025
13.0.0-beta.450 121 11/22/2025
13.0.0-beta.448 118 11/22/2025
13.0.0-beta.444 347 11/17/2025
13.0.0-beta.443 260 11/17/2025
13.0.0-beta.440 95 11/15/2025
13.0.0-beta.439 238 11/12/2025
13.0.0-beta.438 234 11/12/2025
13.0.0-beta.436 235 11/12/2025
13.0.0-beta.435 241 11/11/2025
13.0.0-beta.433 163 11/10/2025
13.0.0-beta.432 164 11/10/2025
13.0.0-beta.431 149 11/6/2025
13.0.0-beta.430 152 11/6/2025
9.9.0 347 11/3/2025
9.9.0-beta.427 168 11/3/2025
9.8.1-beta.426 153 11/3/2025
9.8.1-beta.424 152 10/28/2025
9.8.1-beta.420 141 10/27/2025
9.8.1-beta.419 143 10/27/2025
9.8.1-beta.417 144 10/27/2025
9.8.1-beta.414 133 10/24/2025
9.8.1-beta.413 135 10/22/2025
9.8.1-beta.410 138 10/16/2025
9.8.1-beta.408 125 10/16/2025
9.8.1-beta.407 132 10/16/2025
9.8.1-beta.406 137 10/15/2025
9.8.0 8,197 9/26/2025
9.8.0-beta.405 135 10/15/2025
9.8.0-beta.404 133 10/13/2025
9.8.0-beta.402 142 9/29/2025
9.8.0-beta.401 132 9/29/2025
9.8.0-beta.399 138 9/26/2025
9.8.0-beta.398 139 9/25/2025
9.8.0-beta.397 147 9/25/2025
9.8.0-beta.395 137 9/24/2025
9.8.0-beta.394 142 9/23/2025
9.8.0-beta.393 145 9/23/2025
9.8.0-beta.392 150 9/23/2025
9.8.0-beta.389 270 9/18/2025
9.8.0-beta.388 276 9/16/2025
9.8.0-beta.386 215 9/15/2025
9.8.0-beta.385 216 9/15/2025
9.8.0-beta.384 70 9/13/2025
9.8.0-beta.376 149 9/8/2025
9.8.0-beta.375 86 9/6/2025
9.8.0-beta.373 150 9/5/2025
9.8.0-beta.372 151 9/4/2025
9.8.0-beta.370 144 9/2/2025
9.8.0-beta.364 136 9/1/2025
9.7.2 416 8/29/2025
9.7.2-beta.362 190 8/29/2025
9.7.2-beta.361 184 8/29/2025
9.7.2-beta.360 186 8/29/2025
9.7.2-beta.359 186 8/28/2025
9.7.2-beta.358 183 8/28/2025
9.7.2-beta.357 182 8/28/2025
9.7.1 263 8/27/2025
9.7.1-beta.355 191 8/27/2025
9.7.1-beta.354 185 8/27/2025
9.7.1-beta.353 193 8/27/2025
9.7.1-beta.352 190 8/27/2025
9.7.1-beta.351 196 8/27/2025
9.7.1-beta.348 154 8/14/2025
9.7.1-beta.344 89 8/10/2025
9.7.1-beta.343 210 8/8/2025
9.7.1-beta.342 221 8/7/2025
9.7.1-beta.341 219 8/6/2025
9.7.1-beta.340 209 8/5/2025
9.7.1-beta.339 201 8/5/2025
9.7.0 2,150 8/1/2025
9.7.0-beta.337 103 8/1/2025
9.7.0-beta.336 123 8/1/2025
9.7.0-beta.335 118 8/1/2025
9.7.0-beta.333 125 7/30/2025
9.6.1-beta.332 115 7/30/2025
9.6.1-beta.331 115 7/30/2025
9.6.1-beta.330 111 7/30/2025
9.6.1-beta.329 126 7/30/2025
9.6.1-beta.328 129 7/29/2025
9.6.1-beta.327 135 7/28/2025
9.6.1-beta.326 139 7/28/2025
9.6.0 700 7/10/2025
9.6.0-beta.324 148 7/10/2025
9.5.1-beta.323 147 7/10/2025
9.5.1-beta.322 138 7/10/2025
9.5.1-beta.321 142 7/10/2025
9.5.1-beta.320 152 7/9/2025
9.5.1-beta.319 143 7/8/2025
9.5.1-beta.318 142 7/2/2025
9.5.1-beta.317 136 6/30/2025
9.5.1-beta.315 148 6/26/2025
9.5.1-beta.314 154 6/23/2025
9.5.1-beta.313 134 6/20/2025
9.5.1-beta.312 141 6/20/2025
9.5.1-beta.311 172 6/18/2025
9.5.1-beta.310 144 6/17/2025
9.5.1-beta.309 146 6/17/2025
9.5.1-beta.308 164 6/17/2025
9.5.1-beta.307 169 6/16/2025
9.5.1-beta.306 297 6/11/2025
9.5.1-beta.305 114 6/7/2025
9.5.1-beta.304 135 6/6/2025
9.5.1-beta.303 145 6/4/2025
9.5.1-beta.302 167 6/4/2025
9.5.1-beta.301 144 6/2/2025
9.5.1-beta.300 174 5/28/2025
9.5.0 1,384 5/27/2025
9.5.0-beta.299 146 5/27/2025
9.5.0-beta.298 146 5/26/2025
9.5.0-beta.297 104 5/24/2025
9.5.0-beta.296 91 5/24/2025
9.5.0-beta.295 68 5/24/2025
9.4.1-beta.291 142 5/19/2025
9.4.1-beta.289 168 5/16/2025
9.4.1-beta.288 211 5/16/2025
9.4.1-beta.287 228 5/16/2025
9.4.1-beta.286 207 5/16/2025
9.4.1-beta.285 244 5/14/2025
9.4.1-beta.284 255 5/13/2025
9.4.1-beta.283 227 5/12/2025
9.4.1-beta.282 156 5/7/2025
9.4.1-beta.280 141 5/2/2025
9.4.1-beta.279 150 5/2/2025
9.4.1-beta.277 169 4/23/2025
9.4.1-beta.276 159 4/23/2025
9.4.1-beta.275 161 4/23/2025
9.4.1-beta.274 167 4/23/2025
9.4.1-beta.273 191 4/23/2025
9.4.1-beta.272 154 4/23/2025
9.4.1-beta.271 168 4/23/2025
9.4.1-beta.270 154 4/20/2025
9.4.0 1,560 4/20/2025
9.4.0-beta.269 169 4/20/2025
9.4.0-beta.268 163 4/20/2025
9.3.1-beta.267 165 4/20/2025
9.3.1-beta.266 83 4/19/2025
9.3.1-beta.265 197 4/15/2025
9.3.1-beta.264 212 4/15/2025
9.3.1-beta.263 195 4/15/2025
9.3.1-beta.262 199 4/15/2025
9.3.1-beta.260 166 4/10/2025
9.3.1-beta.259 165 4/8/2025
9.3.1-beta.258 189 4/8/2025
9.3.1-beta.257 194 4/8/2025
9.3.1-beta.256 166 4/8/2025
9.3.1-beta.255 173 4/8/2025
9.3.1-beta.254 170 4/8/2025
9.3.1-beta.253 193 4/1/2025
9.3.1-beta.252 173 3/27/2025
9.3.1-beta.250 144 3/27/2025
9.3.1-beta.249 145 3/27/2025
9.3.1-beta.248 143 3/27/2025
9.3.1-beta.247 169 3/27/2025
9.3.1-beta.244 517 3/25/2025
9.3.1-beta.242 494 3/24/2025
9.3.1-beta.241 171 3/19/2025
9.3.0 315 3/19/2025
9.3.0-beta.239 157 3/19/2025
9.2.2-beta.237 151 3/19/2025
9.2.2-beta.236 126 3/14/2025
9.2.2-beta.230 177 3/13/2025
9.2.2-beta.229 150 3/13/2025
9.2.2-beta.228 167 3/11/2025
9.2.2-beta.227 160 3/11/2025
9.2.2-beta.226 164 3/11/2025
9.2.2-beta.225 185 3/11/2025
9.2.2-beta.224 183 3/11/2025
9.2.2-beta.223 158 3/10/2025
9.2.2-beta.222 189 3/10/2025
9.2.2-beta.220 198 3/9/2025
9.2.2-beta.218 168 3/9/2025
9.2.2-beta.217 197 3/7/2025
9.2.2-beta.216 222 3/7/2025
9.2.2-beta.215 212 3/7/2025
9.2.2-beta.214 205 3/5/2025
9.2.2-beta.213 190 3/5/2025
9.2.2-beta.212 201 3/5/2025
9.2.2-beta.211 238 3/4/2025
9.2.2-beta.210 217 3/4/2025
9.2.2-beta.208 136 3/3/2025
9.2.1 178 3/3/2025
9.2.1-beta.207 151 3/2/2025
9.2.1-beta.206 87 3/1/2025
9.2.1-beta.205 100 2/27/2025
9.2.1-beta.204 95 2/26/2025
9.2.1-beta.203 117 2/26/2025
9.2.0 175 2/26/2025
9.2.0-beta.202 93 2/26/2025
9.2.0-beta.201 100 2/26/2025
9.2.0-beta.199 105 2/26/2025
9.2.0-beta.198 87 2/26/2025
9.1.1-beta.197 102 2/25/2025
9.1.1-beta.196 117 2/25/2025
9.1.1-beta.195 94 2/25/2025
9.1.1-beta.194 126 2/25/2025
9.1.1-beta.193 85 2/25/2025
9.1.1-beta.192 98 2/24/2025
9.1.1-beta.191 125 2/24/2025
9.1.1-beta.190 116 2/19/2025
9.1.1-beta.189 115 2/19/2025
9.1.1-beta.188 127 2/19/2025
9.1.1-beta.187 113 2/19/2025
9.1.1-beta.183 118 2/18/2025
9.1.1-beta.182 101 2/18/2025
9.1.1-beta.181 121 2/18/2025
9.1.1-beta.180 107 2/17/2025
9.1.1-beta.178 143 2/17/2025
9.1.1-beta.177 110 2/12/2025
9.1.1-beta.176 105 2/11/2025
9.1.1-beta.175 97 2/11/2025
9.1.1-beta.173 112 2/10/2025