mongocsharpdriver 2.30.0
dotnet add package mongocsharpdriver --version 2.30.0
NuGet\Install-Package mongocsharpdriver -Version 2.30.0
<PackageReference Include="mongocsharpdriver" Version="2.30.0" />
paket add mongocsharpdriver --version 2.30.0
#r "nuget: mongocsharpdriver, 2.30.0"
// 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 | Versions 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. |
-
.NETFramework 4.7.2
- MongoDB.Bson (>= 2.30.0)
- MongoDB.Driver (>= 2.30.0)
- MongoDB.Driver.Core (>= 2.30.0)
-
.NETStandard 2.0
- MongoDB.Bson (>= 2.30.0)
- MongoDB.Driver (>= 2.30.0)
- MongoDB.Driver.Core (>= 2.30.0)
-
.NETStandard 2.1
- MongoDB.Bson (>= 2.30.0)
- MongoDB.Driver (>= 2.30.0)
- MongoDB.Driver.Core (>= 2.30.0)
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 (1)
Showing the top 1 popular GitHub repositories that depend on mongocsharpdriver:
Repository | Stars |
---|---|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
Version | Downloads | Last updated | |
---|---|---|---|
2.30.0 | 4,892 | 10/16/2024 | |
2.29.0 | 7,193 | 9/18/2024 | |
2.28.0 | 26,669 | 7/23/2024 | |
2.27.0 | 17,539 | 6/28/2024 | |
2.26.0 | 14,091 | 6/12/2024 | |
2.25.0 | 29,852 | 4/12/2024 | |
2.24.0 | 75,693 | 2/21/2024 | |
2.23.2 | 2,948 | 2/20/2024 | |
2.23.1 | 44,289 | 12/15/2023 | |
2.23.0 | 4,421 | 12/11/2023 | |
2.22.0 | 87,131 | 10/9/2023 | |
2.21.0 | 87,938 | 8/10/2023 | |
2.20.0 | 55,511 | 6/21/2023 | |
2.19.2 | 36,036 | 5/25/2023 | |
2.19.1 | 68,609 | 3/27/2023 | |
2.19.0 | 75,255 | 1/27/2023 | |
2.18.0 | 224,723 | 10/14/2022 | |
2.17.1 | 123,744 | 7/30/2022 | |
2.17.0 | 53,781 | 7/18/2022 | |
2.16.1 | 57,097 | 6/21/2022 | |
2.16.0 | 65,349 | 6/7/2022 | |
2.15.1 | 34,484 | 5/4/2022 | |
2.15.0 | 54,360 | 3/9/2022 | |
2.14.1 | 617,584 | 12/3/2021 | |
2.14.0 | 19,082 | 11/24/2021 | |
2.14.0-beta1 | 5,266 | 10/15/2021 | |
2.13.3 | 115,224 | 11/23/2021 | |
2.13.2 | 108,311 | 10/6/2021 | |
2.13.1 | 148,297 | 8/4/2021 | |
2.13.0 | 39,750 | 7/13/2021 | |
2.13.0-beta1 | 2,923 | 3/31/2021 | |
2.12.5 | 1,088 | 11/20/2021 | |
2.12.4 | 66,349 | 6/4/2021 | |
2.12.3 | 57,735 | 5/4/2021 | |
2.12.2 | 55,222 | 4/7/2021 | |
2.12.1 | 10,517 | 3/23/2021 | |
2.12.0 | 45,100 | 3/3/2021 | |
2.12.0-beta1 | 1,278 | 11/6/2020 | |
2.11.6 | 209,996 | 1/20/2021 | |
2.11.5 | 102,223 | 12/2/2020 | |
2.11.4 | 44,321 | 11/4/2020 | |
2.11.3 | 56,242 | 10/15/2020 | |
2.11.2 | 84,648 | 9/10/2020 | |
2.11.1 | 28,438 | 8/25/2020 | |
2.11.0 | 37,467 | 7/30/2020 | |
2.11.0-beta2 | 5,810 | 6/10/2020 | |
2.11.0-beta1 | 1,900 | 4/10/2020 | |
2.10.4 | 634,073 | 5/5/2020 | |
2.10.3 | 109,399 | 4/7/2020 | |
2.10.2 | 1,288,661 | 2/14/2020 | |
2.10.1 | 42,331 | 1/15/2020 | |
2.10.0 | 61,063 | 12/10/2019 | |
2.10.0-beta1 | 2,257 | 10/2/2019 | |
2.9.3 | 140,657 | 11/8/2019 | |
2.9.2 | 86,438 | 9/30/2019 | |
2.9.1 | 57,429 | 8/21/2019 | |
2.9.0 | 12,396 | 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,898 | 5/15/2019 | |
2.8.0 | 113,875 | 3/13/2019 | |
2.7.3 | 226,535 | 1/24/2019 | |
2.7.2 | 134,956 | 11/10/2018 | |
2.7.1 | 7,466 | 11/8/2018 | |
2.7.0 | 355,937 | 6/27/2018 | |
2.7.0-beta0001 | 1,752 | 4/22/2018 | |
2.6.1 | 146,187 | 5/17/2018 | |
2.6.0 | 285,178 | 4/24/2018 | |
2.5.1 | 39,484 | 4/19/2018 | |
2.5.0 | 317,589 | 12/12/2017 | |
2.4.4 | 605,500 | 6/8/2017 | |
2.4.3 | 179,682 | 3/9/2017 | |
2.4.2 | 72,732 | 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,597 | 9/23/2016 | |
2.3.0-rc1 | 49,872 | 8/29/2016 | |
2.3.0-beta1 | 2,952 | 8/3/2016 | |
2.2.4 | 84,951 | 5/18/2016 | |
2.2.3 | 144,802 | 2/2/2016 | |
2.2.2 | 25,727 | 1/15/2016 | |
2.2.1 | 8,835 | 1/8/2016 | |
2.2.0 | 86,500 | 12/7/2015 | |
2.2.0-rc0 | 1,492 | 11/18/2015 | |
2.1.1 | 75,309 | 11/11/2015 | |
2.1.0 | 34,239 | 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,619 | 11/11/2015 | |
2.0.1 | 155,550 | 6/8/2015 | |
2.0.0 | 114,763 | 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,878 | 12/9/2015 | |
1.11.0-rc0 | 2,261 | 11/18/2015 | |
1.10.1 | 230,374 | 8/12/2015 | |
1.10.0 | 980,802 | 1/29/2015 | |
1.10.0-rc1 | 2,469 | 12/30/2014 | |
1.10.0-rc0 | 3,528 | 11/13/2014 | |
1.9.2 | 1,032,132 | 6/30/2014 | |
1.9.1 | 55,462 | 5/15/2014 | |
1.9.0 | 80,670 | 4/3/2014 | |
1.8.3 | 420,368 | 9/30/2013 | |
1.8.2 | 101,747 | 8/7/2013 | |
1.8.1 | 140,113 | 4/8/2013 | |
1.8.0 | 24,274 | 3/20/2013 | |
1.7.1 | 46,778 | 2/15/2013 | |
1.7.0 | 80,523 | 11/27/2012 | |
1.6.1 | 27,373 | 10/24/2012 | |
1.6.0 | 23,251 | 8/30/2012 | |
1.5.0 | 60,000 | 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,943 | 11/29/2011 | |
1.3.0 | 20,458 | 10/21/2011 | |
1.2.0 | 4,837 | 9/14/2011 | |
1.1.0 | 16,581 | 6/17/2011 | |
1.0.0 | 5,373 | 3/23/2011 | |
0.11.0.4042 | 56,524 | 2/24/2011 |