MongoDB.Driver.Core 2.28.0

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

// Install MongoDB.Driver.Core as a Cake Tool
#tool nuget:?package=MongoDB.Driver.Core&version=2.28.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 was computed.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (262)

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

Package Downloads
MongoDB.Driver

Official .NET driver 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

Elastic.Apm.MongoDb

Elastic APM integration with the MongoDB.Driver package.

MongoDB.Driver.Core.Extensions.DiagnosticSources

Package Description

GitHub repositories (30)

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

Repository Stars
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
fanliang11/surging
Surging is a micro-service engine that provides a lightweight, high-performance, modular RPC request pipeline. support Event-based Asynchronous Pattern and reactive programming ,The service engine supports http, TCP, WS,Grpc, Thrift,Mqtt, UDP, and DNS protocols. It uses ZooKeeper and Consul as a registry, and integrates it. Hash, random, polling, Fair Polling as a load balancing algorithm, built-in service governance to ensure reliable RPC communication, the engine contains Diagnostic, link tracking for protocol and middleware calls, and integration SkyWalking Distributed APM
FastReports/FastReport
Free Open Source Reporting tool for .NET6/.NET Core/.NET Framework that helps your application generate document-like reports
grandnode/grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
Version Downloads Last updated
2.28.0 17,051 7/23/2024
2.27.0 354,800 6/28/2024
2.26.0 324,812 6/12/2024
2.25.0 1,983,661 4/12/2024
2.24.0 2,132,410 2/21/2024
2.23.2 92,718 2/20/2024
2.23.1 3,404,302 12/15/2023
2.23.0 376,931 12/11/2023
2.22.0 4,578,971 10/9/2023
2.21.0 3,453,379 8/10/2023
2.20.0 3,754,490 6/21/2023
2.19.2 2,225,955 5/25/2023
2.19.1 5,800,606 3/27/2023
2.19.0 7,252,422 1/27/2023
2.18.0 8,407,663 10/14/2022
2.17.1 9,063,001 7/30/2022
2.17.0 1,127,349 7/18/2022
2.16.1 2,087,380 6/21/2022
2.16.0 1,224,432 6/7/2022
2.15.1 3,701,107 5/4/2022
2.15.0 4,383,936 3/9/2022
2.14.1 11,831,229 12/3/2021
2.14.0 1,344,694 11/24/2021
2.14.0-beta1 57,897 10/15/2021
2.13.3 2,902,978 11/23/2021
2.13.2 7,728,373 10/6/2021
2.13.1 5,838,299 8/4/2021
2.13.0 1,506,891 7/13/2021
2.13.0-beta1 61,639 3/31/2021
2.12.5 99,299 11/20/2021
2.12.4 2,756,901 6/4/2021
2.12.3 2,403,816 5/4/2021
2.12.2 2,272,701 4/7/2021
2.12.1 1,329,425 3/23/2021
2.12.0 4,151,734 3/3/2021
2.12.0-beta1 126,802 11/6/2020
2.11.6 8,912,665 1/20/2021
2.11.5 3,562,004 12/2/2020
2.11.4 2,223,241 11/4/2020
2.11.3 2,654,577 10/15/2020
2.11.2 6,175,421 9/10/2020
2.11.1 1,129,128 8/25/2020
2.11.0 1,975,250 7/30/2020
2.11.0-beta2 26,536 6/10/2020
2.11.0-beta1 62,203 4/10/2020
2.10.4 8,518,228 5/5/2020
2.10.3 1,853,288 4/7/2020
2.10.2 5,539,640 2/14/2020
2.10.1 3,115,190 1/15/2020
2.10.0 6,012,719 12/10/2019
2.10.0-beta1 46,787 10/2/2019
2.9.3 3,366,822 11/8/2019
2.9.2 3,853,984 9/30/2019
2.9.1 6,895,513 8/21/2019
2.9.0 342,805 8/15/2019
2.9.0-beta2 41,152 6/17/2019
2.9.0-beta1 51,327 3/13/2019
2.8.1 6,391,475 5/15/2019
2.8.0 4,422,953 3/13/2019
2.7.3 2,684,602 1/24/2019
2.7.2 4,438,446 11/10/2018
2.7.1 47,528 11/8/2018
2.7.0 6,278,980 6/27/2018
2.7.0-beta0001 36,626 4/22/2018
2.6.1 1,300,045 5/17/2018
2.6.0 740,925 4/24/2018
2.5.1 661,853 4/19/2018
2.5.0 3,306,549 12/12/2017
2.4.4 13,796,153 6/8/2017
2.4.3 1,255,750 3/9/2017
2.4.2 400,229 2/2/2017
2.4.1 189,379 1/4/2017
2.4.0 742,000 11/29/2016
2.4.0-beta1 20,426 10/5/2016
2.3.0 7,147,680 9/23/2016
2.3.0-rc1 84,318 8/29/2016
2.3.0-beta1 12,717 8/3/2016
2.2.4 836,323 5/18/2016
2.2.3 534,007 2/2/2016
2.2.2 62,657 1/15/2016
2.2.1 25,464 1/8/2016
2.2.0 149,130 12/7/2015
2.2.0-rc0 6,008 11/18/2015
2.1.1 177,640 11/11/2015
2.1.0 96,000 10/19/2015
2.1.0-rc1 10,203 10/7/2015
2.1.0-rc0 7,662 9/17/2015
2.0.2 63,691 11/11/2015
2.0.1 368,617 6/8/2015
2.0.0 388,647 4/2/2015
2.0.0-rc0 17,937 3/17/2015
2.0.0-beta4 4,577 3/9/2015
2.0.0-beta3 4,169 3/5/2015
2.0.0-beta2 5,239 2/4/2015
2.0.0-beta1 5,727 1/16/2015