Aspire.MongoDB.Driver
8.0.1
Prefix Reserved
See the version list below for details.
dotnet add package Aspire.MongoDB.Driver --version 8.0.1
NuGet\Install-Package Aspire.MongoDB.Driver -Version 8.0.1
<PackageReference Include="Aspire.MongoDB.Driver" Version="8.0.1" />
paket add Aspire.MongoDB.Driver --version 8.0.1
#r "nuget: Aspire.MongoDB.Driver, 8.0.1"
// Install Aspire.MongoDB.Driver as a Cake Addin #addin nuget:?package=Aspire.MongoDB.Driver&version=8.0.1 // Install Aspire.MongoDB.Driver as a Cake Tool #tool nuget:?package=Aspire.MongoDB.Driver&version=8.0.1
Aspire.MongoDB.Driver library
Registers IMongoClient in the DI container for connecting MongoDB database.
Getting started
Prerequisites
- MongoDB database and connection string for accessing the database.
Install the package
Install the .NET Aspire MongoDB.Driver library with NuGet:
dotnet add package Aspire.MongoDB.Driver
Usage example
In the Program.cs file of your project, call the AddMongoDBClient
extension method to register a IMongoClient
for use via the dependency injection container. The method takes a connection name parameter.
builder.AddMongoDBClient("mongodb");
You can then retrieve a IMongoClient
instance using dependency injection. For example, to retrieve a connection from a Web API controller:
private readonly IMongoClient _client;
public ProductsController(IMongoClient client)
{
_client = client;
}
Configuration
The .NET Aspire MongoDB component provides multiple options to configure the database 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.AddMongoDBClient()
:
builder.AddMongoDBClient("myConnection");
And then the connection string will be retrieved from the ConnectionStrings
configuration section:
{
"ConnectionStrings": {
"myConnection": "mongodb://server:port/test",
}
}
See the ConnectionString documentation for more information on how to format this connection string.
Use configuration providers
The .NET Aspire MongoDB component supports Microsoft.Extensions.Configuration. It loads the MongoDBSettings
from configuration by using the Aspire:MongoDB:Driver
key. Example appsettings.json
that configures some of the options:
{
"Aspire": {
"MongoDB": {
"Driver": {
"ConnectionString": "mongodb://server:port/test",
"DisableHealthChecks": false,
"HealthCheckTimeout": 10000,
"DisableTracing": false
},
}
}
}
Use inline delegates
Also you can pass the Action<MongoDBSettings> configureSettings
delegate to set up some or all the options inline:
builder.AddMongoDBClient("mongodb", settings => settings.ConnectionString = "mongodb://server:port/test");
AppHost extensions
In your AppHost project, install the Aspire.Hosting.MongoDB
library with NuGet:
dotnet add package Aspire.Hosting.MongoDB
Then, in the Program.cs file of AppHost
, register a MongoDB database and consume the connection using the following methods:
var mongodb = builder.AddMongoDB("mongodb").AddDatabase("mydatabase");
var myService = builder.AddProject<Projects.MyService>()
.WithReference(mongodb);
The WithReference
method configures a connection in the MyService
project named mongodb
. In the Program.cs file of MyService
, the database connection can be consumed using:
builder.AddMongoDBClient("mongodb");
Additional documentation
- https://www.mongodb.com/docs/drivers/csharp/current/quick-start/
- 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
- AspNetCore.HealthChecks.MongoDb (>= 8.0.1)
- Microsoft.Extensions.Configuration.Binder (>= 8.0.1)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.4)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- MongoDB.Driver (>= 2.25.0)
- MongoDB.Driver.Core.Extensions.DiagnosticSources (>= 1.4.0)
- OpenTelemetry.Extensions.Hosting (>= 1.8.1)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Aspire.MongoDB.Driver:
Package | Downloads |
---|---|
BotSharp.Plugin.MongoStorage
Package Description |
|
Arkmory.Orchestration.ServiceDefaults
Package Description |
|
Berrevoets.Play.Economy.Common
A library for Microservices. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Aspire.MongoDB.Driver:
Repository | Stars |
---|---|
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
|
Version | Downloads | Last updated |
---|---|---|
9.0.0 | 489 | 11/12/2024 |
9.0.0-rc.1.24511.1 | 1,134 | 10/15/2024 |
8.2.2 | 1,392 | 10/24/2024 |
8.2.1 | 5,741 | 9/26/2024 |
8.2.0 | 8,817 | 8/29/2024 |
8.1.0 | 3,429 | 7/23/2024 |
8.0.2 | 5,725 | 6/28/2024 |
8.0.1 | 7,231 | 5/21/2024 |
8.0.0 | 218 | 5/21/2024 |
8.0.0-preview.7.24251.11 | 1,059 | 5/7/2024 |
8.0.0-preview.6.24214.1 | 669 | 4/23/2024 |
8.0.0-preview.5.24201.12 | 759 | 4/9/2024 |
8.0.0-preview.4.24156.9 | 769 | 3/12/2024 |
8.0.0-preview.3.24105.21 | 1,086 | 2/13/2024 |
8.0.0-preview.2.23619.3 | 1,464 | 12/20/2023 |