mongocsharpdriver 2.30.0

Suggested Alternatives

MongoDB.Driver

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

// Install mongocsharpdriver as a Cake Tool
#tool nuget:?package=mongocsharpdriver&version=2.30.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 (238)

Showing the top 5 NuGet packages that depend on mongocsharpdriver:

Package Downloads
Cqrs.Mongo

Use MongoDB as the read store and data store in CQRS.NET

MongoRepository

This easy to use library implements the repository pattern on top of Official MongoDB C# driver.

Bailun.ServiceFabric.Core

百伦dotnet core微服务,基础类库

d60.Cirqus.MongoDb

MongoDB stuff for d60 event sourcing + cqrs kit

Bam.Net.Data.Repositories

Repository pattern providers for the Bam framework

GitHub repositories (28)

Showing the top 5 popular GitHub repositories that depend on mongocsharpdriver:

Repository Stars
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
wqaetly/NKGMobaBasedOnET
基于ET框架致敬LOL的Moba游戏,提供完整的状态帧同步框架,包含预测回滚逻辑,基于双端行为树的技能系统,更多精彩等你发现!Based on the ET framework, we pay tribute to LOL's Moba game, providing a complete state frame synchronization framework, including predictive rollback logic, a skill system based on double-ended behavior trees, and more exciting things waiting for you to discover!
brockallen/BrockAllen.MembershipReboot
MembershipReboot is a user identity management and authentication library.
ElderJames/shriek-fx
An easy-to-use rapid development framework developed on the basis of.NET Core 2.0, following the constraints of domain Driven Design (DDD) specifications, combined with the CQRS architecture to provide the infrastructure for event-driven, event backtracking, responsiveness, and more. Let developers enjoy the true meaning of object-oriented design patterns brought by the aesthetic.
imazen/resizer
The official repository for ImageResizer
Version Downloads Last updated
2.30.0 4,704 10/16/2024 2.30.0 is deprecated because it is no longer maintained.
2.29.0 7,065 9/18/2024
2.28.0 26,310 7/23/2024
2.27.0 17,428 6/28/2024
2.26.0 13,971 6/12/2024
2.25.0 29,838 4/12/2024
2.24.0 75,503 2/21/2024
2.23.2 2,948 2/20/2024
2.23.1 44,186 12/15/2023
2.23.0 4,419 12/11/2023
2.22.0 87,006 10/9/2023
2.21.0 87,735 8/10/2023
2.20.0 55,451 6/21/2023
2.19.2 36,024 5/25/2023
2.19.1 68,534 3/27/2023
2.19.0 75,199 1/27/2023
2.18.0 224,622 10/14/2022
2.17.1 123,680 7/30/2022
2.17.0 53,780 7/18/2022
2.16.1 57,086 6/21/2022
2.16.0 65,191 6/7/2022
2.15.1 34,482 5/4/2022
2.15.0 54,348 3/9/2022
2.14.1 617,561 12/3/2021
2.14.0 19,081 11/24/2021
2.14.0-beta1 5,264 10/15/2021
2.13.3 115,181 11/23/2021
2.13.2 108,245 10/6/2021
2.13.1 148,240 8/4/2021
2.13.0 39,738 7/13/2021
2.13.0-beta1 2,923 3/31/2021
2.12.5 1,088 11/20/2021
2.12.4 66,327 6/4/2021
2.12.3 57,705 5/4/2021
2.12.2 55,192 4/7/2021
2.12.1 10,517 3/23/2021
2.12.0 45,087 3/3/2021
2.12.0-beta1 1,278 11/6/2020
2.11.6 209,777 1/20/2021
2.11.5 102,211 12/2/2020
2.11.4 44,319 11/4/2020
2.11.3 56,228 10/15/2020
2.11.2 84,645 9/10/2020
2.11.1 28,430 8/25/2020
2.11.0 37,451 7/30/2020
2.11.0-beta2 5,810 6/10/2020
2.11.0-beta1 1,900 4/10/2020
2.10.4 633,937 5/5/2020
2.10.3 109,349 4/7/2020
2.10.2 1,288,623 2/14/2020
2.10.1 42,331 1/15/2020
2.10.0 61,060 12/10/2019
2.10.0-beta1 2,257 10/2/2019
2.9.3 140,611 11/8/2019
2.9.2 86,431 9/30/2019
2.9.1 57,429 8/21/2019
2.9.0 12,394 8/15/2019
2.9.0-beta2 2,938 6/17/2019
2.9.0-beta1 1,757 3/13/2019
2.8.1 166,886 5/15/2019
2.8.0 113,867 3/13/2019
2.7.3 226,477 1/24/2019
2.7.2 134,935 11/10/2018
2.7.1 7,462 11/8/2018
2.7.0 355,905 6/27/2018
2.7.0-beta0001 1,752 4/22/2018
2.6.1 146,158 5/17/2018
2.6.0 285,171 4/24/2018
2.5.1 39,482 4/19/2018
2.5.0 317,558 12/12/2017
2.4.4 605,427 6/8/2017
2.4.3 179,658 3/9/2017
2.4.2 72,729 2/2/2017
2.4.1 27,640 1/4/2017
2.4.0 99,071 11/29/2016
2.4.0-beta1 4,040 10/5/2016
2.3.0 240,566 9/23/2016
2.3.0-rc1 49,869 8/29/2016
2.3.0-beta1 2,952 8/3/2016
2.2.4 84,942 5/18/2016
2.2.3 144,778 2/2/2016
2.2.2 25,725 1/15/2016
2.2.1 8,834 1/8/2016
2.2.0 86,497 12/7/2015
2.2.0-rc0 1,492 11/18/2015
2.1.1 75,277 11/11/2015
2.1.0 34,219 10/19/2015
2.1.0-rc1 3,621 10/7/2015
2.1.0-rc0 1,884 9/17/2015
2.0.2 2,618 11/11/2015
2.0.1 155,537 6/8/2015
2.0.0 114,755 4/2/2015
2.0.0-rc0 2,138 3/17/2015
2.0.0-beta4 1,459 3/9/2015
2.0.0-beta3 1,537 3/5/2015
2.0.0-beta2 2,075 2/4/2015
2.0.0-beta1 2,104 1/16/2015
1.11.0 314,843 12/9/2015
1.11.0-rc0 2,261 11/18/2015
1.10.1 230,369 8/12/2015
1.10.0 980,730 1/29/2015
1.10.0-rc1 2,468 12/30/2014
1.10.0-rc0 3,522 11/13/2014
1.9.2 1,031,867 6/30/2014
1.9.1 55,454 5/15/2014
1.9.0 80,668 4/3/2014
1.8.3 420,307 9/30/2013
1.8.2 101,743 8/7/2013
1.8.1 140,090 4/8/2013
1.8.0 24,272 3/20/2013
1.7.1 46,772 2/15/2013
1.7.0 80,331 11/27/2012
1.6.1 27,372 10/24/2012
1.6.0 23,249 8/30/2012
1.5.0 59,997 7/3/2012
1.4.2 27,963 4/27/2012
1.4.1 9,767 4/18/2012
1.4.0 12,661 3/27/2012
1.3.1 70,903 11/29/2011
1.3.0 20,435 10/21/2011
1.2.0 4,837 9/14/2011
1.1.0 16,579 6/17/2011
1.0.0 5,373 3/23/2011
0.11.0.4042 56,523 2/24/2011