MongoDB.Factory 0.1.6

dotnet add package MongoDB.Factory --version 0.1.6
NuGet\Install-Package MongoDB.Factory -Version 0.1.6
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="MongoDB.Factory" Version="0.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MongoDB.Factory --version 0.1.6
#r "nuget: MongoDB.Factory, 0.1.6"
#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 MongoDB.Factory as a Cake Addin
#addin nuget:?package=MongoDB.Factory&version=0.1.6

// Install MongoDB.Factory as a Cake Tool
#tool nuget:?package=MongoDB.Factory&version=0.1.6

MongoDB Factory for .NET

This project provides a factory extension for the MongoDB driver to use with .NET dependency injection.

This is still a work in progress. Things might change, break or disappear. Use at your own risk.

Getting Started

Install the package from NuGet

dotnet add package MongoDB.Factory

Register the factory with the DI container

IServiceCollection services = ...;

services.AddMongoClient( connectionString );

Inject the factory instance in your code and retrieve the client instance.

public class MyService
{
    private readonly IMongoClient mongoClient;

    public MyService( IMongoFactory mongoFactory )
    {
        mongoClient = mongoFactory.CreateClient();
    }
}
Product 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 is compatible.  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 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. 
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
0.1.6 119 1/19/2024
0.1.5 231 4/24/2023
0.1.4 150 4/19/2023
0.1.3 254 1/2/2023
0.1.2 401 8/1/2022
0.1.1 444 4/1/2022
0.1.0 501 11/16/2021