MongoDB.Driver 3.0.0

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

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

MongoDB C# Driver

You can get the latest stable release from the official Nuget.org feed or from our github releases page.

Getting Started

Untyped Documents

using MongoDB.Bson;
using MongoDB.Driver;
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<BsonDocument>("bar");

await collection.InsertOneAsync(new BsonDocument("Name", "Jack"));

var list = await collection.Find(new BsonDocument("Name", "Jack"))
    .ToListAsync();

foreach(var document in list)
{
    Console.WriteLine(document["Name"]);
}

Typed Documents

using MongoDB.Bson;
using MongoDB.Driver;
public class Person
{
    public ObjectId Id { get; set; }
    public string Name { get; set; }
}
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<Person>("bar");

await collection.InsertOneAsync(new Person { Name = "Jack" });

var list = await collection.Find(x => x.Name == "Jack")
    .ToListAsync();

foreach(var person in list)
{
    Console.WriteLine(person.Name);
}

Documentation

Questions/Bug Reports

If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.

Contributing

Please see our guidelines for contributing to the driver.

Thank you to everyone who has contributed to this project.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2.7K)

Showing the top 5 NuGet packages that depend on MongoDB.Driver:

Package Downloads
AspNetCore.HealthChecks.MongoDb

HealthChecks.MongoDb is the health check package for MongoDb.

MongoDB.Driver.GridFS

GridFS Component of the Official MongoDB .NET Driver.

mongocsharpdriver

This package contains the legacy driver. The new driver's package name is MongoDB.Driver

Mongo2Go

Mongo2Go is a managed wrapper around the latest MongoDB binaries. It targets .NET Standard 2.0. This Nuget package contains the executables of mongod, mongoimport and mongoexport v4.4.4 for Windows, Linux and macOS. Mongo2Go has two use cases: 1. Providing multiple, temporary and isolated MongoDB databases for unit tests (or to be precise: integration tests) 2. Providing a quick to set up MongoDB database for a local developer environment

MongoDB.Driver.Core.Extensions.DiagnosticSources

Package Description

GitHub repositories (190)

Showing the top 5 popular GitHub repositories that depend on MongoDB.Driver:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
dotnet/AspNetCore.Docs
Documentation for ASP.NET Core
MassTransit/MassTransit
Distributed Application Framework for .NET
dotnetcore/CAP
Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern
Version Downloads Last updated
3.0.0 277,002 10/16/2024
2.30.0 261,573 10/16/2024
2.29.0 741,824 9/18/2024
2.28.0 2,787,978 7/23/2024
2.27.0 1,662,709 6/28/2024
2.26.0 792,164 6/12/2024
2.25.0 3,477,612 4/12/2024
2.24.0 3,112,288 2/21/2024
2.23.2 113,254 2/20/2024
2.23.1 4,578,641 12/15/2023
2.23.0 484,268 12/11/2023
2.22.0 6,185,090 10/9/2023
2.21.0 4,056,284 8/10/2023
2.20.0 4,586,717 6/21/2023
2.19.2 2,619,970 5/25/2023
2.19.1 6,418,750 3/27/2023
2.19.0 7,327,454 1/27/2023
2.18.0 8,821,253 10/14/2022 2.18.0 has at least one vulnerability with high severity.
2.17.1 9,724,183 7/30/2022 2.17.1 has at least one vulnerability with high severity.
2.17.0 1,177,763 7/18/2022 2.17.0 has at least one vulnerability with high severity.
2.16.1 2,137,616 6/21/2022 2.16.1 has at least one vulnerability with high severity.
2.16.0 1,253,715 6/7/2022 2.16.0 has at least one vulnerability with high severity.
2.15.1 3,694,341 5/4/2022 2.15.1 has at least one vulnerability with high severity.
2.15.0 4,439,843 3/9/2022 2.15.0 has at least one vulnerability with high severity.
2.14.1 12,434,517 12/3/2021 2.14.1 has at least one vulnerability with high severity.
2.14.0 1,358,716 11/24/2021 2.14.0 has at least one vulnerability with high severity.
2.14.0-beta1 56,350 10/15/2021 2.14.0-beta1 has at least one vulnerability with high severity.
2.13.3 1,036,919 11/23/2021 2.13.3 has at least one vulnerability with high severity.
2.13.2 8,304,089 10/6/2021 2.13.2 has at least one vulnerability with high severity.
2.13.1 6,067,685 8/4/2021 2.13.1 has at least one vulnerability with high severity.
2.13.0 1,548,675 7/13/2021 2.13.0 has at least one vulnerability with high severity.
2.13.0-beta1 60,619 3/31/2021 2.13.0-beta1 has at least one vulnerability with high severity.
2.12.5 101,046 11/20/2021 2.12.5 has at least one vulnerability with high severity.
2.12.4 2,792,279 6/4/2021 2.12.4 has at least one vulnerability with high severity.
2.12.3 2,432,167 5/4/2021 2.12.3 has at least one vulnerability with high severity.
2.12.2 2,334,602 4/7/2021 2.12.2 has at least one vulnerability with high severity.
2.12.1 1,320,583 3/23/2021 2.12.1 has at least one vulnerability with high severity.
2.12.0 4,518,429 3/3/2021 2.12.0 has at least one vulnerability with high severity.
2.12.0-beta1 129,119 11/6/2020 2.12.0-beta1 has at least one vulnerability with high severity.
2.11.6 9,123,080 1/20/2021 2.11.6 has at least one vulnerability with high severity.
2.11.5 3,569,361 12/2/2020 2.11.5 has at least one vulnerability with high severity.
2.11.4 2,236,243 11/4/2020 2.11.4 has at least one vulnerability with high severity.
2.11.3 2,786,287 10/15/2020 2.11.3 has at least one vulnerability with high severity.
2.11.2 6,282,127 9/10/2020 2.11.2 has at least one vulnerability with high severity.
2.11.1 1,143,052 8/25/2020 2.11.1 has at least one vulnerability with high severity.
2.11.0 2,000,901 7/30/2020 2.11.0 has at least one vulnerability with high severity.
2.11.0-beta2 25,448 6/10/2020 2.11.0-beta2 has at least one vulnerability with high severity.
2.11.0-beta1 56,375 4/10/2020 2.11.0-beta1 has at least one vulnerability with high severity.
2.10.4 8,554,663 5/5/2020 2.10.4 has at least one vulnerability with high severity.
2.10.3 1,849,331 4/7/2020 2.10.3 has at least one vulnerability with high severity.
2.10.2 5,579,274 2/14/2020 2.10.2 has at least one vulnerability with high severity.
2.10.1 3,144,516 1/15/2020 2.10.1 has at least one vulnerability with high severity.
2.10.0 6,366,388 12/10/2019 2.10.0 has at least one vulnerability with high severity.
2.10.0-beta1 45,921 10/2/2019 2.10.0-beta1 has at least one vulnerability with high severity.
2.9.3 3,404,162 11/8/2019 2.9.3 has at least one vulnerability with high severity.
2.9.2 3,920,408 9/30/2019 2.9.2 has at least one vulnerability with high severity.
2.9.1 7,052,694 8/21/2019 2.9.1 has at least one vulnerability with high severity.
2.9.0 342,322 8/15/2019 2.9.0 has at least one vulnerability with high severity.
2.9.0-beta2 40,247 6/17/2019 2.9.0-beta2 has at least one vulnerability with high severity.
2.9.0-beta1 50,571 3/13/2019 2.9.0-beta1 has at least one vulnerability with high severity.
2.8.1 6,570,071 5/15/2019 2.8.1 has at least one vulnerability with high severity.
2.8.0 4,669,335 3/13/2019 2.8.0 has at least one vulnerability with high severity.
2.7.3 2,688,998 1/24/2019 2.7.3 has at least one vulnerability with high severity.
2.7.2 4,599,180 11/10/2018 2.7.2 has at least one vulnerability with high severity.
2.7.1 47,841 11/8/2018 2.7.1 has at least one vulnerability with high severity.
2.7.0 6,416,526 6/27/2018 2.7.0 has at least one vulnerability with high severity.
2.7.0-beta0001 35,354 4/22/2018 2.7.0-beta0001 has at least one vulnerability with high severity.
2.6.1 1,313,089 5/17/2018 2.6.1 has at least one vulnerability with high severity.
2.6.0 746,227 4/24/2018 2.6.0 has at least one vulnerability with high severity.
2.5.1 695,853 4/19/2018 2.5.1 has at least one vulnerability with high severity.
2.5.0 3,370,988 12/12/2017 2.5.0 has at least one vulnerability with high severity.
2.4.4 3,486,557 6/8/2017 2.4.4 has at least one vulnerability with high severity.
2.4.3 1,272,535 3/9/2017 2.4.3 has at least one vulnerability with high severity.
2.4.2 398,261 2/2/2017 2.4.2 has at least one vulnerability with high severity.
2.4.1 191,648 1/4/2017 2.4.1 has at least one vulnerability with high severity.
2.4.0 638,831 11/29/2016 2.4.0 has at least one vulnerability with high severity.
2.4.0-beta1 19,496 10/5/2016 2.4.0-beta1 has at least one vulnerability with high severity.
2.3.0 4,718,158 9/23/2016 2.3.0 has at least one vulnerability with high severity.
2.3.0-rc1 86,735 8/29/2016 2.3.0-rc1 has at least one vulnerability with high severity.
2.3.0-beta1 11,570 8/3/2016 2.3.0-beta1 has at least one vulnerability with high severity.
2.2.4 854,470 5/18/2016 2.2.4 has at least one vulnerability with high severity.
2.2.3 535,095 2/2/2016 2.2.3 has at least one vulnerability with high severity.
2.2.2 60,226 1/15/2016 2.2.2 has at least one vulnerability with high severity.
2.2.1 24,545 1/8/2016 2.2.1 has at least one vulnerability with high severity.
2.2.0 152,387 12/7/2015 2.2.0 has at least one vulnerability with high severity.
2.2.0-rc0 4,872 11/18/2015 2.2.0-rc0 has at least one vulnerability with high severity.
2.1.1 179,326 11/11/2015 2.1.1 has at least one vulnerability with high severity.
2.1.0 95,003 10/19/2015 2.1.0 has at least one vulnerability with high severity.
2.1.0-rc1 8,819 10/7/2015 2.1.0-rc1 has at least one vulnerability with high severity.
2.1.0-rc0 6,528 9/17/2015 2.1.0-rc0 has at least one vulnerability with high severity.
2.0.2 62,370 11/11/2015 2.0.2 has at least one vulnerability with high severity.
2.0.1 369,796 6/8/2015 2.0.1 has at least one vulnerability with high severity.
2.0.0 404,361 4/2/2015 2.0.0 has at least one vulnerability with high severity.
2.0.0-rc0 16,682 3/17/2015 2.0.0-rc0 has at least one vulnerability with high severity.
2.0.0-beta4 3,226 3/9/2015 2.0.0-beta4 has at least one vulnerability with high severity.
2.0.0-beta3 2,804 3/5/2015 2.0.0-beta3 has at least one vulnerability with high severity.
2.0.0-beta2 3,955 2/4/2015 2.0.0-beta2 has at least one vulnerability with high severity.
2.0.0-beta1 4,005 1/16/2015 2.0.0-beta1 has at least one vulnerability with high severity.