MongoDB.Bson 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.

Showing the top 20 packages that depend on MongoDB.Bson.

Packages Downloads
mongocsharpdriver
This package contains the legacy driver. The new driver's package name is MongoDB.Driver
25
mongocsharpdriver
This package contains the legacy driver. The new driver's package name is MongoDB.Driver
24
MongoDB.Driver
Official .NET driver for MongoDB.
24
MongoDB.Driver.Core
Core Component of the Official MongoDB .NET Driver.
23
mongocsharpdriver
This package contains the legacy driver. The new driver's package name is MongoDB.Driver.
23
MongoDB.Driver.Core
Core Component of the Official MongoDB .NET Driver.
22
MongoDB.Driver
Official .NET driver for MongoDB.
22
mongocsharpdriver
This package contains the legacy driver. The new driver's package name is MongoDB.Driver.
22
mongocsharpdriver
This package contains the legacy driver. The new driver's package name is MongoDB.Driver
22

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

.NET Framework 4.7.2

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
3.4.0 1 5/3/2025
3.3.0 6 3/28/2025
3.2.1 8 2/21/2025
3.2.0 9 2/21/2025
3.1.0 10 12/12/2024
3.0.0 9 10/29/2024
2.30.0 7 10/29/2024
2.29.0 10 9/23/2024
2.28.0 18 8/11/2024
2.27.0 14 6/29/2024
2.26.0 17 6/25/2024
2.25.0 18 8/23/2024
2.24.0 20 3/8/2024
2.23.2 18 3/8/2024
2.23.1 19 3/8/2024
2.23.0 18 3/8/2024
2.22.0 20 3/8/2024
2.21.0 20 3/8/2024
2.20.0 19 7/2/2023
2.19.2 21 3/8/2024
2.19.1 18 3/8/2024
2.19.0 19 3/8/2024
2.18.0 20 3/8/2024
2.17.1 22 3/8/2024
2.17.0 19 3/8/2024
2.16.1 20 3/8/2024
2.16.0 22 3/8/2024
2.15.1 22 3/8/2024
2.15.0 18 3/8/2024
2.14.1 22 3/8/2024
2.14.0 21 3/8/2024
2.14.0-beta1 19 3/8/2024
2.13.3 25 3/8/2024
2.13.2 20 3/8/2024
2.13.1 16 3/8/2024
2.13.0 18 3/8/2024
2.13.0-beta1 16 3/8/2024
2.12.5 20 3/8/2024
2.12.4 18 3/8/2024
2.12.3 19 3/8/2024
2.12.2 20 3/8/2024
2.12.1 24 3/8/2024
2.12.0 21 3/8/2024
2.12.0-beta1 22 3/8/2024
2.11.6 18 3/8/2024
2.11.5 22 3/8/2024
2.11.4 20 4/12/2022
2.11.3 21 3/8/2024
2.11.2 18 3/8/2024
2.11.1 16 3/8/2024
2.11.0 24 3/8/2024
2.11.0-beta2 16 3/8/2024
2.11.0-beta1 19 3/8/2024
2.10.4 22 3/8/2024
2.10.3 16 3/8/2024
2.10.2 18 3/8/2024
2.10.1 17 3/8/2024
2.10.0 19 3/8/2024
2.10.0-beta1 17 3/8/2024
2.9.3 19 3/8/2024
2.9.2 18 3/8/2024
2.9.1 21 3/8/2024
2.9.0 19 3/8/2024
2.9.0-beta2 23 3/8/2024
2.9.0-beta1 19 3/8/2024
2.8.1 18 3/8/2024
2.8.0 21 3/8/2024
2.7.3 20 3/8/2024
2.7.2 17 3/8/2024
2.7.1 21 3/8/2024
2.7.0 18 3/8/2024
2.7.0-beta0001 18 3/8/2024
2.6.1 17 3/8/2024
2.6.0 19 3/8/2024
2.5.1 18 3/8/2024
2.5.0 21 3/8/2024
2.4.4 18 3/8/2024
2.4.3 21 3/8/2024
2.4.2 15 3/8/2024
2.4.1 19 3/8/2024
2.4.0 22 3/8/2024
2.4.0-beta1 18 3/8/2024
2.3.0 19 3/8/2024
2.3.0-rc1 19 3/8/2024
2.3.0-beta1 17 3/8/2024
2.2.4 17 3/8/2024
2.2.3 19 3/8/2024
2.2.2 17 3/8/2024
2.2.1 20 3/8/2024
2.2.0 19 3/8/2024
2.2.0-rc0 18 3/8/2024
2.1.1 17 3/8/2024
2.1.0 16 3/8/2024
2.1.0-rc1 20 3/8/2024
2.1.0-rc0 17 3/8/2024
2.0.2 17 3/8/2024
2.0.1 18 3/8/2024
2.0.0 19 3/8/2024
2.0.0-rc0 18 3/8/2024
2.0.0-beta4 18 3/8/2024
2.0.0-beta3 21 3/8/2024
2.0.0-beta2 16 3/8/2024
2.0.0-beta1 19 3/8/2024