EventDriven.DependencyInjection.URF.Mongo
1.2.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package EventDriven.DependencyInjection.URF.Mongo --version 1.2.1
NuGet\Install-Package EventDriven.DependencyInjection.URF.Mongo -Version 1.2.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="EventDriven.DependencyInjection.URF.Mongo" Version="1.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EventDriven.DependencyInjection.URF.Mongo --version 1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EventDriven.DependencyInjection.URF.Mongo, 1.2.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.
// Install EventDriven.DependencyInjection.URF.Mongo as a Cake Addin #addin nuget:?package=EventDriven.DependencyInjection.URF.Mongo&version=1.2.1 // Install EventDriven.DependencyInjection.URF.Mongo as a Cake Tool #tool nuget:?package=EventDriven.DependencyInjection.URF.Mongo&version=1.2.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EventDriven.DependencyInjection.Mongo
Helper methods for configuring services for MongoDB with dependency injection.
Setup
Package references.
- EventDriven.DependencyInjection.URF.Mongo
appsettings.json file.
{
"MyMongoSettings": {
"ConnectionString": "mongodb://localhost:27017",
"DatabaseName": "SagaConfigDb",
"CollectionName": "MyEntities"
}
}
- Strongly typed app settings class.
public class MyMongoSettings : IMongoDbSettings
{
public string ConnectionString { get; set; } = null!;
public string DatabaseName { get; set; } = null!;
public string CollectionName { get; set; } = null!;
}
- Entity class.
public class MyEntity
{
public Guid Id { get; set; }
public string StringValue { get; set; } = null!;
public int MyIntValue { get; set; }
}
Usage
- In a Web API project.
builder.Services.AddMongoDbSettings<MyMongoSettings, MyEntity>(builder.Configuration);
- In a console project.
var host = Host
.CreateDefaultBuilder(args)
.ConfigureServices(services =>
{
var config = services.BuildServiceProvider()
.GetRequiredService<IConfiguration>();
services.AddMongoDbSettings<MyMongoSettings, MyEntity>(config);
})
.Build();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- EventDriven.DependencyInjection (>= 1.1.0)
- MongoDB.Driver (>= 2.17.1)
- URF.Core.Mongo (>= 6.1.1)
NuGet packages (5)
Showing the top 5 NuGet packages that depend on EventDriven.DependencyInjection.URF.Mongo:
Package | Downloads |
---|---|
EventDriven.SchemaRegistry.Mongo
A mechanism for validating messages against schemas that are stored in a registry by topic name. |
|
EventDriven.EventBus.EventCache.Mongo
A MongoDB implementation of event caching. |
|
EventDriven.EventBus.Dapr.EventCache.Mongo
A MongoDB implementation of event caching with Dapr state store. |
|
EventDriven.Sagas.Persistence.Mongo
A set of abstractions for implementing the Saga pattern. |
|
EventDriven.Sagas.Configuration.Mongo
A set of abstractions for implementing the Saga pattern. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.3.0 | 218 | 9/18/2024 |
1.2.2 | 72,824 | 9/10/2023 |
1.2.1 | 111,401 | 8/8/2022 |
1.2.0 | 949 | 8/5/2022 |
1.1.0 | 52,368 | 2/26/2022 |
1.1.0-beta4 | 990 | 2/9/2022 |
1.1.0-beta3 | 3,753 | 1/31/2022 |
1.1.0-beta2 | 873 | 1/8/2022 |
1.1.0-beta1 | 194 | 1/7/2022 |
1.0.0-beta2 | 190 | 1/4/2022 |
1.0.0-beta1 | 191 | 1/4/2022 |