
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Aspire.MongoDB.Driver.v3
Advanced tools
Registers IMongoClient in the DI container for connecting MongoDB database.
Install the .NET Aspire MongoDB.Driver library with NuGet:
dotnet add package Aspire.MongoDB.Driver
In the AppHost.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;
}
The .NET Aspire MongoDB component provides multiple options to configure the database connection based on the requirements and conventions of your project.
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.
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
},
}
}
}
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");
In your AppHost project, install the Aspire.Hosting.MongoDB
library with NuGet:
dotnet add package Aspire.Hosting.MongoDB
Then, in the AppHost.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");
FAQs
A generic MongoDB client that integrates with Aspire.
We found that aspire.mongodb.driver.v3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.