mongocsharpdriver 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.

Showing the top 20 packages that depend on mongocsharpdriver.

Packages Downloads
Audit.NET.MongoDB
Store Audit.NET Trail Logs into a MongoDB database
18
Audit.NET.MongoDB
Store Audit.NET Trail Logs into a MongoDB database
17
Audit.NET.MongoDB
Store Audit.NET Trail Logs into a MongoDB database
16
Audit.NET.MongoDB
Mongo DB provider for Audit.NET library
16
Audit.NET.MongoDB
Store Audit.NET Trail Logs into a MongoDB database
15
Audit.NET.MongoDB
Mongo DB provider for Audit.NET library
15
Audit.NET.MongoDB
Store Audit.NET Trail Logs into a MongoDB database
14
Audit.NET.MongoDB
Mongo DB provider for Audit.NET library
14

https://github.com/mongodb/mongo-csharp-driver/releases/tag/v2.30.0

.NET Framework 4.7.2

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
2.30.0 17 10/24/2024
2.29.0 12 09/19/2024
2.28.0 13 07/25/2024
2.27.0 20 06/28/2024
2.26.0 31 06/26/2024
2.25.0 32 04/30/2024
2.24.0 21 03/13/2024
2.23.2 24 03/13/2024
2.23.1 18 01/17/2024
2.23.0 15 01/17/2024
2.22.0 19 12/07/2023
2.21.0 14 12/07/2023
2.20.0 17 12/07/2023
2.19.2 14 08/30/2024
2.19.1 18 07/07/2024
2.19.0 15 08/28/2024
2.18.0 14 06/28/2024
2.17.1 16 08/30/2024
2.17.0 14 08/28/2024
2.16.1 11 07/25/2024
2.16.0 13 07/28/2024
2.15.1 16 06/28/2024
2.15.0 16 06/25/2024
2.14.1 15 04/22/2024
2.14.0 16 08/30/2024
2.14.0-beta1 14 02/16/2024
2.13.3 13 08/27/2024
2.13.2 15 03/07/2024
2.13.1 13 08/30/2024
2.13.0 16 08/30/2024
2.13.0-beta1 17 02/16/2024
2.12.5 17 07/30/2024
2.12.4 14 08/30/2024
2.12.3 17 07/20/2024
2.12.2 16 07/25/2024
2.12.1 14 08/30/2024
2.12.0 15 07/30/2024
2.12.0-beta1 14 09/28/2023
2.11.6 17 07/18/2024
2.11.5 12 10/05/2023
2.11.4 16 03/18/2024
2.11.3 15 08/30/2024
2.11.2 14 12/09/2023
2.11.1 13 08/30/2024
2.11.0 11 10/14/2023
2.11.0-beta2 18 02/16/2024
2.11.0-beta1 16 02/16/2024
2.10.4 13 08/23/2024
2.10.3 16 10/14/2023
2.10.2 14 08/30/2024
2.10.1 15 07/28/2024
2.10.0 9 08/30/2024
2.10.0-beta1 17 02/16/2024
2.9.3 14 01/16/2024
2.9.2 14 08/30/2024
2.9.1 10 08/30/2024
2.9.0 14 12/30/2023
2.9.0-beta2 18 03/22/2024
2.9.0-beta1 19 03/22/2024
2.8.1 16 03/15/2024
2.8.0 13 07/16/2024
2.7.3 15 08/30/2024
2.7.2 15 08/30/2024
2.7.1 15 08/30/2024
2.7.0 17 08/07/2024
2.7.0-beta0001 11 09/08/2023
2.6.1 12 08/30/2024
2.6.0 19 08/14/2024
2.5.1 18 08/22/2024
2.5.0 13 02/16/2024
2.4.4 13 03/19/2024
2.4.3 15 06/23/2024
2.4.2 13 08/30/2024
2.4.1 10 12/30/2023
2.4.0 13 08/30/2024
2.4.0-beta1 17 12/11/2023
2.3.0 15 04/07/2024
2.3.0-rc1 14 06/27/2024
2.3.0-beta1 19 03/22/2024
2.2.4 14 07/31/2024
2.2.3 15 08/03/2024
2.2.2 13 08/30/2024
2.2.1 13 08/29/2024
2.2.0 12 08/27/2024
2.2.0-rc0 16 06/27/2024
2.1.1 14 08/30/2024
2.1.0 15 04/25/2024
2.1.0-rc1 17 06/27/2024
2.1.0-rc0 14 06/27/2024
2.0.2 15 07/25/2024
2.0.1 13 08/06/2024
2.0.0 15 08/30/2024
2.0.0-rc0 14 06/27/2024
2.0.0-beta4 18 03/22/2024
2.0.0-beta3 17 01/17/2024
2.0.0-beta2 18 03/22/2024
2.0.0-beta1 16 03/22/2024
1.11.0 13 07/15/2024
1.11.0-rc0 12 02/19/2024
1.10.1 13 01/22/2024
1.10.0 14 09/08/2023
1.10.0-rc1 19 02/19/2024
1.10.0-rc0 16 02/19/2024
1.9.2 47 11/29/2019
1.9.1 20 08/30/2024
1.9.0 16 08/30/2024
1.8.3 13 08/30/2024
1.8.2 20 06/26/2024
1.8.1 17 08/13/2024
1.8.0 14 08/04/2024
1.7.1 16 08/10/2024
1.7.0 15 03/17/2024
1.6.1 15 08/30/2024
1.6.0 14 12/30/2023
1.5.0 12 01/13/2024
1.4.2 15 08/28/2024
1.4.1 10 08/30/2024
1.4.0 16 07/25/2024
1.3.1 15 06/14/2023
1.3.0 14 08/30/2024
1.2.0 13 08/06/2024
1.1.0 13 08/13/2024
1.0.0 13 07/26/2024
0.11.0.4042 18 03/19/2024