Etherna.MongoDB.Driver.GridFS 2.28.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Etherna.MongoDB.Driver.GridFS --version 2.28.0                
NuGet\Install-Package Etherna.MongoDB.Driver.GridFS -Version 2.28.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="Etherna.MongoDB.Driver.GridFS" Version="2.28.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Etherna.MongoDB.Driver.GridFS --version 2.28.0                
#r "nuget: Etherna.MongoDB.Driver.GridFS, 2.28.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 Etherna.MongoDB.Driver.GridFS as a Cake Addin
#addin nuget:?package=Etherna.MongoDB.Driver.GridFS&version=2.28.0

// Install Etherna.MongoDB.Driver.GridFS as a Cake Tool
#tool nuget:?package=Etherna.MongoDB.Driver.GridFS&version=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 Etherna.MongoDB.Bson;
using Etherna.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 Etherna.MongoDB.Bson;
using Etherna.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 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.28.3 81 9/9/2024
2.28.2 78 8/27/2024
2.28.1 76 8/27/2024
2.28.0 54 7/27/2024
2.27.0 87 6/28/2024
2.26.0 88 6/26/2024
2.25.0 100 4/14/2024
2.24.0 98 3/21/2024
2.23.100 185 12/16/2023
2.23.0 99 12/12/2023
2.22.0 157 10/28/2023
2.21.0 172 8/14/2023
2.20.0 135 6/22/2023
2.19.200 134 5/25/2023
2.19.100 206 3/27/2023
2.19.0 279 1/28/2023
2.18.1 280 1/24/2023
2.18.0 402 10/22/2022
2.17.100 492 7/30/2022
2.17.0 384 7/19/2022
2.16.100 407 6/24/2022
2.16.0 2,873 6/7/2022
2.15.100 532 5/9/2022
2.15.1 459 4/13/2022
2.15.0 462 3/9/2022
2.14.103 397 12/24/2021
2.14.102 275 12/8/2021
2.14.101 268 12/6/2021
2.14.100 273 12/6/2021