CommunityToolkit.Aspire.RavenDB.Client 13.0.0

Prefix Reserved
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.0 24 11/25/2025
13.0.0-beta.462 22 11/25/2025
13.0.0-beta.456 42 11/23/2025
13.0.0-beta.454 38 11/23/2025
13.0.0-beta.453 63 11/22/2025
13.0.0-beta.450 69 11/22/2025
13.0.0-beta.448 65 11/22/2025
13.0.0-beta.444 331 11/17/2025
13.0.0-beta.443 244 11/17/2025
13.0.0-beta.440 80 11/15/2025
13.0.0-beta.439 221 11/12/2025
13.0.0-beta.438 217 11/12/2025
13.0.0-beta.436 218 11/12/2025
13.0.0-beta.435 224 11/11/2025
13.0.0-beta.433 144 11/10/2025
13.0.0-beta.432 144 11/10/2025
13.0.0-beta.431 131 11/6/2025
13.0.0-beta.430 131 11/6/2025
9.9.0 258 11/3/2025
9.9.0-beta.427 145 11/3/2025
9.8.1-beta.426 134 11/3/2025
9.8.1-beta.424 133 10/28/2025
9.8.1-beta.420 125 10/27/2025
9.8.1-beta.419 129 10/27/2025
9.8.1-beta.417 130 10/27/2025
9.8.1-beta.414 120 10/24/2025
9.8.1-beta.413 121 10/22/2025
9.8.1-beta.410 122 10/16/2025
9.8.1-beta.408 114 10/16/2025
9.8.1-beta.407 114 10/16/2025
9.8.1-beta.406 126 10/15/2025
9.8.0 4,337 9/26/2025
9.8.0-beta.405 122 10/15/2025
9.8.0-beta.404 123 10/13/2025
9.8.0-beta.402 124 9/29/2025
9.8.0-beta.401 120 9/29/2025
9.8.0-beta.399 125 9/26/2025
9.8.0-beta.398 125 9/25/2025
9.8.0-beta.397 132 9/25/2025
9.8.0-beta.395 125 9/24/2025
9.8.0-beta.394 129 9/23/2025
9.8.0-beta.393 132 9/23/2025
9.8.0-beta.392 134 9/23/2025
9.8.0-beta.389 253 9/18/2025
9.8.0-beta.388 263 9/16/2025
9.8.0-beta.386 204 9/15/2025
9.8.0-beta.385 206 9/15/2025
9.8.0-beta.384 54 9/13/2025
9.8.0-beta.376 136 9/8/2025
9.8.0-beta.375 68 9/6/2025
9.8.0-beta.373 143 9/5/2025
9.8.0-beta.372 137 9/4/2025
9.8.0-beta.370 135 9/2/2025
9.8.0-beta.364 125 9/1/2025
9.7.2 402 8/29/2025
9.7.2-beta.362 177 8/29/2025
9.7.2-beta.361 175 8/29/2025
9.7.2-beta.360 173 8/29/2025
9.7.2-beta.359 179 8/28/2025
9.7.2-beta.358 171 8/28/2025
9.7.2-beta.357 173 8/28/2025
9.7.1 246 8/27/2025
9.7.1-beta.355 180 8/27/2025
9.7.1-beta.354 177 8/27/2025
9.7.1-beta.353 180 8/27/2025
9.7.1-beta.352 178 8/27/2025
9.7.1-beta.351 184 8/27/2025
9.7.1-beta.348 140 8/14/2025
9.7.1-beta.344 80 8/10/2025
9.7.1-beta.343 201 8/8/2025
9.7.1-beta.342 211 8/7/2025
9.7.1-beta.341 205 8/6/2025
9.7.1-beta.340 192 8/5/2025
9.7.1-beta.339 194 8/5/2025
9.7.0 2,130 8/1/2025
9.7.0-beta.337 88 8/1/2025
9.7.0-beta.336 107 8/1/2025
9.7.0-beta.335 102 8/1/2025
9.7.0-beta.333 112 7/30/2025
9.6.1-beta.332 106 7/30/2025
9.6.1-beta.331 104 7/30/2025
9.6.1-beta.330 102 7/30/2025
9.6.1-beta.329 113 7/30/2025
9.6.1-beta.328 113 7/29/2025
9.6.1-beta.327 122 7/28/2025
9.6.1-beta.326 120 7/28/2025
9.6.0 547 7/10/2025
9.6.0-beta.324 130 7/10/2025
9.5.1-beta.323 133 7/10/2025
9.5.1-beta.322 127 7/10/2025
9.5.1-beta.321 131 7/10/2025
9.5.1-beta.320 135 7/9/2025
9.5.1-beta.319 130 7/8/2025
9.5.1-beta.318 132 7/2/2025
9.5.1-beta.317 126 6/30/2025
9.5.1-beta.315 137 6/26/2025
9.5.1-beta.314 142 6/23/2025
9.5.1-beta.313 121 6/20/2025
9.5.1-beta.312 128 6/20/2025
9.5.1-beta.311 160 6/18/2025
9.5.1-beta.310 130 6/17/2025
9.5.1-beta.309 136 6/17/2025
9.5.1-beta.308 150 6/17/2025
9.5.1-beta.307 155 6/16/2025
9.5.1-beta.306 285 6/11/2025
9.5.1-beta.305 104 6/7/2025
9.5.1-beta.304 118 6/6/2025
9.5.1-beta.303 133 6/4/2025
9.5.1-beta.302 156 6/4/2025
9.5.1-beta.301 130 6/2/2025
9.5.1-beta.300 161 5/28/2025
9.5.0 1,368 5/27/2025
9.5.0-beta.299 136 5/27/2025
9.5.0-beta.298 137 5/26/2025
9.5.0-beta.297 90 5/24/2025
9.5.0-beta.296 84 5/24/2025
9.5.0-beta.295 57 5/24/2025
9.4.1-beta.291 133 5/19/2025
9.4.1-beta.289 152 5/16/2025
9.4.1-beta.288 200 5/16/2025
9.4.1-beta.287 218 5/16/2025
9.4.1-beta.286 198 5/16/2025
9.4.1-beta.285 236 5/14/2025
9.4.1-beta.284 242 5/13/2025
9.4.1-beta.283 218 5/12/2025
9.4.1-beta.282 143 5/7/2025
9.4.1-beta.280 132 5/2/2025
9.4.1-beta.279 138 5/2/2025
9.4.1-beta.277 152 4/23/2025
9.4.1-beta.276 146 4/23/2025
9.4.1-beta.275 149 4/23/2025
9.4.1-beta.274 157 4/23/2025
9.4.1-beta.273 176 4/23/2025
9.4.1-beta.272 140 4/23/2025
9.4.1-beta.271 152 4/23/2025
9.4.1-beta.270 143 4/20/2025
9.4.0 1,548 4/20/2025
9.4.0-beta.269 158 4/20/2025
9.4.0-beta.268 147 4/20/2025
9.3.1-beta.267 151 4/20/2025
9.3.1-beta.266 75 4/19/2025
9.3.1-beta.265 186 4/15/2025
9.3.1-beta.264 201 4/15/2025
9.3.1-beta.263 182 4/15/2025
9.3.1-beta.262 183 4/15/2025
9.3.1-beta.260 159 4/10/2025
9.3.1-beta.259 148 4/8/2025
9.3.1-beta.258 176 4/8/2025
9.3.1-beta.257 178 4/8/2025
9.3.1-beta.256 147 4/8/2025
9.3.1-beta.255 156 4/8/2025
9.3.1-beta.254 156 4/8/2025
9.3.1-beta.253 183 4/1/2025
9.3.1-beta.252 156 3/27/2025
9.3.1-beta.250 126 3/27/2025
9.3.1-beta.249 135 3/27/2025
9.3.1-beta.248 131 3/27/2025
9.3.1-beta.247 160 3/27/2025
9.3.1-beta.244 505 3/25/2025
9.3.1-beta.242 476 3/24/2025
9.3.1-beta.241 158 3/19/2025
9.3.0 306 3/19/2025
9.3.0-beta.239 146 3/19/2025
9.2.2-beta.237 138 3/19/2025
9.2.2-beta.236 112 3/14/2025
9.2.2-beta.230 166 3/13/2025
9.2.2-beta.229 143 3/13/2025
9.2.2-beta.228 158 3/11/2025
9.2.2-beta.227 151 3/11/2025
9.2.2-beta.226 154 3/11/2025
9.2.2-beta.225 172 3/11/2025
9.2.2-beta.224 171 3/11/2025
9.2.2-beta.223 152 3/10/2025
9.2.2-beta.222 179 3/10/2025
9.2.2-beta.220 181 3/9/2025
9.2.2-beta.218 154 3/9/2025
9.2.2-beta.217 188 3/7/2025
9.2.2-beta.216 214 3/7/2025
9.2.2-beta.215 196 3/7/2025
9.2.2-beta.214 196 3/5/2025
9.2.2-beta.213 181 3/5/2025
9.2.2-beta.212 189 3/5/2025
9.2.2-beta.211 228 3/4/2025
9.2.2-beta.210 206 3/4/2025
9.2.2-beta.208 119 3/3/2025
9.2.1 163 3/3/2025
9.2.1-beta.207 141 3/2/2025
9.2.1-beta.206 77 3/1/2025
9.2.1-beta.205 85 2/27/2025
9.2.1-beta.204 84 2/26/2025
9.2.1-beta.203 103 2/26/2025
9.2.0 158 2/26/2025
9.2.0-beta.202 84 2/26/2025
9.2.0-beta.201 87 2/26/2025
9.2.0-beta.199 88 2/26/2025
9.2.0-beta.198 76 2/26/2025
9.1.1-beta.197 88 2/25/2025
9.1.1-beta.196 106 2/25/2025
9.1.1-beta.195 87 2/25/2025
9.1.1-beta.194 108 2/25/2025
9.1.1-beta.193 72 2/25/2025
9.1.1-beta.192 87 2/24/2025
9.1.1-beta.191 114 2/24/2025
9.1.1-beta.190 98 2/19/2025
9.1.1-beta.189 101 2/19/2025
9.1.1-beta.188 112 2/19/2025
9.1.1-beta.187 99 2/19/2025
9.1.1-beta.183 107 2/18/2025
9.1.1-beta.182 92 2/18/2025
9.1.1-beta.181 105 2/18/2025
9.1.1-beta.180 94 2/17/2025
9.1.1-beta.178 132 2/17/2025
9.1.1-beta.177 100 2/12/2025
9.1.1-beta.176 97 2/11/2025
9.1.1-beta.175 86 2/11/2025
9.1.1-beta.173 102 2/10/2025