Etherna.MongoDB.Bson
2.28.2
See the version list below for details.
dotnet add package Etherna.MongoDB.Bson --version 2.28.2
NuGet\Install-Package Etherna.MongoDB.Bson -Version 2.28.2
<PackageReference Include="Etherna.MongoDB.Bson" Version="2.28.2" />
paket add Etherna.MongoDB.Bson --version 2.28.2
#r "nuget: Etherna.MongoDB.Bson, 2.28.2"
// Install Etherna.MongoDB.Bson as a Cake Addin #addin nuget:?package=Etherna.MongoDB.Bson&version=2.28.2 // Install Etherna.MongoDB.Bson as a Cake Tool #tool nuget:?package=Etherna.MongoDB.Bson&version=2.28.2
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. |
-
.NETStandard 2.0
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
-
.NETStandard 2.1
- System.Memory (>= 4.5.5)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Etherna.MongoDB.Bson:
Package | Downloads |
---|---|
Etherna.MongoDB.Driver.Core
Fork by Etherna of the Core Component of the Official MongoDB .NET Driver. |
|
Etherna.MongoDB.Driver
Fork by Etherna of the official .NET driver for MongoDB. |
|
Etherna.MongoDB.Driver.GridFS
Fork by Etherna of the GridFS Component of the Official MongoDB .NET Driver. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
3.0.1 | 158 | 10/25/2024 |
2.29.0 | 209 | 9/19/2024 |
2.28.3 | 379 | 9/9/2024 |
2.28.2 | 224 | 8/27/2024 |
2.28.1 | 209 | 8/27/2024 |
2.28.0 | 153 | 7/27/2024 |
2.27.0 | 204 | 6/28/2024 |
2.26.0 | 233 | 6/26/2024 |
2.25.0 | 219 | 4/14/2024 |
2.24.0 | 246 | 3/21/2024 |
2.23.100 | 320 | 12/16/2023 |
2.23.0 | 252 | 12/12/2023 |
2.22.0 | 354 | 10/28/2023 |
2.21.0 | 328 | 8/14/2023 |
2.20.0 | 351 | 6/22/2023 |
2.19.200 | 307 | 5/25/2023 |
2.19.100 | 541 | 3/27/2023 |
2.19.0 | 905 | 1/28/2023 |
2.18.1 | 702 | 1/24/2023 |
2.18.0 | 1,182 | 10/22/2022 |
2.17.100 | 1,208 | 7/30/2022 |
2.17.0 | 1,144 | 7/19/2022 |
2.16.100 | 1,217 | 6/24/2022 |
2.16.0 | 3,808 | 6/7/2022 |
2.15.100 | 1,312 | 5/9/2022 |
2.15.1 | 2,898 | 4/13/2022 |
2.15.0 | 1,218 | 3/9/2022 |
2.14.103 | 781 | 12/24/2021 |
2.14.102 | 637 | 12/8/2021 |
2.14.101 | 822 | 12/6/2021 |
2.14.1 | 416 | 12/6/2021 |