Etherna.MongoDB.Driver.GridFS
2.29.0
dotnet add package Etherna.MongoDB.Driver.GridFS --version 2.29.0
NuGet\Install-Package Etherna.MongoDB.Driver.GridFS -Version 2.29.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.29.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.29.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Etherna.MongoDB.Driver.GridFS, 2.29.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.29.0 // Install Etherna.MongoDB.Driver.GridFS as a Cake Tool #tool nuget:?package=Etherna.MongoDB.Driver.GridFS&version=2.29.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | 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 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.
-
.NETStandard 2.0
- Etherna.MongoDB.Bson (>= 2.29.0)
- Etherna.MongoDB.Driver (>= 2.29.0)
- Etherna.MongoDB.Driver.Core (>= 2.29.0)
-
.NETStandard 2.1
- Etherna.MongoDB.Bson (>= 2.29.0)
- Etherna.MongoDB.Driver (>= 2.29.0)
- Etherna.MongoDB.Driver.Core (>= 2.29.0)
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.29.0 | 111 | 9/19/2024 |
2.28.3 | 110 | 9/9/2024 |
2.28.2 | 105 | 8/27/2024 |
2.28.1 | 97 | 8/27/2024 |
2.28.0 | 72 | 7/27/2024 |
2.27.0 | 100 | 6/28/2024 |
2.26.0 | 103 | 6/26/2024 |
2.25.0 | 124 | 4/14/2024 |
2.24.0 | 114 | 3/21/2024 |
2.23.100 | 202 | 12/16/2023 |
2.23.0 | 110 | 12/12/2023 |
2.22.0 | 178 | 10/28/2023 |
2.21.0 | 192 | 8/14/2023 |
2.20.0 | 151 | 6/22/2023 |
2.19.200 | 159 | 5/25/2023 |
2.19.100 | 224 | 3/27/2023 |
2.19.0 | 298 | 1/28/2023 |
2.18.1 | 298 | 1/24/2023 |
2.18.0 | 416 | 10/22/2022 |
2.17.100 | 511 | 7/30/2022 |
2.17.0 | 405 | 7/19/2022 |
2.16.100 | 427 | 6/24/2022 |
2.16.0 | 2,997 | 6/7/2022 |
2.15.100 | 546 | 5/9/2022 |
2.15.1 | 475 | 4/13/2022 |
2.15.0 | 478 | 3/9/2022 |
2.14.103 | 414 | 12/24/2021 |
2.14.102 | 291 | 12/8/2021 |
2.14.101 | 287 | 12/6/2021 |
2.14.100 | 290 | 12/6/2021 |