MongoDB.Driver.GridFS 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 MongoDB.Driver.GridFS.

Packages Downloads
Flowaccount.Data
Application Core
106
Flowaccount.Data
Application Core
73
Flowaccount.Data
Application Core
72
Flowaccount.Data
Application Core
64
Flowaccount.Data
Application Core
61
Flowaccount.Data
Application Core
60
Flowaccount.Data
Application Core
53
Flowaccount.Data
Application Core
52
Flowaccount.Data
Application Core
51
Flowaccount.Data
Application Core
49
Flowaccount.Data
Application Core
48
Flowaccount.Data
Application Core
46
Flowaccount.Data
Application Core
45
Flowaccount.Data
Application Core
44
Flowaccount.Data
Application Core
43
Flowaccount.Data
Application Core
41
Flowaccount.Data
Application Core
40
Flowaccount.Data
Application Core
39

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 19 10/22/2024
2.29.0 18 09/19/2024
2.28.0 19 07/24/2024
2.27.0 15 06/29/2024
2.26.0 21 06/25/2024
2.25.0 19 04/16/2024
2.24.0 29 03/15/2024
2.23.2 30 03/21/2024
2.23.1 24 01/08/2024
2.23.0 17 01/08/2024
2.22.0 25 01/08/2024
2.21.0 29 01/08/2024
2.20.0 17 01/21/2024
2.19.2 26 08/29/2023
2.19.1 29 04/24/2023
2.19.0 41 08/24/2023
2.18.0 40 10/18/2022
2.17.1 29 08/11/2022
2.17.0 28 08/26/2023
2.16.1 27 08/27/2023
2.16.0 33 08/28/2023
2.15.1 25 02/19/2024
2.15.0 27 08/31/2023
2.14.1 21 12/15/2021
2.14.0 25 08/25/2023
2.14.0-beta1 28 08/31/2023
2.13.3 21 08/28/2023
2.13.2 16 02/19/2024
2.13.1 22 08/29/2023
2.13.0 25 08/26/2023
2.13.0-beta1 27 09/01/2023
2.12.5 15 02/19/2024
2.12.4 22 08/28/2023
2.12.3 25 08/27/2023
2.12.2 27 08/29/2023
2.12.1 24 02/19/2024
2.12.0 15 08/31/2023
2.12.0-beta1 24 08/26/2023
2.11.6 21 08/25/2023
2.11.5 27 01/16/2021
2.11.4 19 08/28/2023
2.11.3 28 08/28/2023
2.11.2 25 08/31/2023
2.11.1 24 08/28/2023
2.11.0 46 07/08/2021
2.11.0-beta2 26 08/31/2023
2.11.0-beta1 26 12/07/2023
2.10.4 17 08/29/2023
2.10.3 23 08/27/2023
2.10.2 22 08/29/2023
2.10.1 17 08/29/2023
2.10.0 24 08/28/2023
2.10.0-beta1 18 08/29/2023
2.9.3 20 06/12/2023
2.9.2 24 06/13/2023
2.9.1 23 02/19/2024
2.9.0 25 02/19/2024
2.9.0-beta2 15 08/28/2023
2.9.0-beta1 20 08/26/2023
2.8.1 24 06/13/2023
2.8.0 21 06/13/2023
2.7.3 12 02/20/2024
2.7.2 22 06/14/2023
2.7.1 18 06/13/2023
2.7.0 25 06/14/2023
2.7.0-beta0001 28 08/28/2023
2.6.1 496 01/13/2021
2.6.0 28 12/04/2023
2.5.1 26 06/14/2023
2.5.0 27 06/13/2023
2.4.4 194 11/14/2019
2.4.3 25 06/13/2023
2.4.2 23 06/12/2023
2.4.1 27 06/13/2023
2.4.0 21 06/12/2023
2.4.0-beta1 25 08/27/2023
2.3.0 21 06/13/2023
2.3.0-rc1 25 02/16/2024
2.3.0-beta1 27 08/28/2023
2.2.4 29 06/12/2023
2.2.3 26 06/13/2023
2.2.2 22 02/19/2024
2.2.1 26 06/13/2023
2.2.0 22 06/14/2023
2.2.0-rc0 18 02/16/2024
2.1.1 22 12/05/2023
2.1.0 26 06/14/2023
2.1.0-rc1 15 02/16/2024
2.1.0-rc0 24 02/16/2024