MongoDB.Bson.Path
1.0.0
See the version list below for details.
dotnet add package MongoDB.Bson.Path --version 1.0.0
NuGet\Install-Package MongoDB.Bson.Path -Version 1.0.0
<PackageReference Include="MongoDB.Bson.Path" Version="1.0.0" />
paket add MongoDB.Bson.Path --version 1.0.0
#r "nuget: MongoDB.Bson.Path, 1.0.0"
// Install MongoDB.Bson.Path as a Cake Addin #addin nuget:?package=MongoDB.Bson.Path&version=1.0.0 // Install MongoDB.Bson.Path as a Cake Tool #tool nuget:?package=MongoDB.Bson.Path&version=1.0.0
MongoDB.Bson.Path
MongoDB.Bson.Path is a jsonpath implementation for MongoDB.Bson. It is a port of the jsonpath implementation from Newtonsoft.Json.
Packages
MongoDB.Bson.Path can also be installed from nuget.org.
Install with package manager:
Install-Package MongoDB.Bson.Path
or with nuget:
nuget install MongoDB.Bson.Path
Or with dotnet:
dotnet add package MongoDB.Bson.Path
Example usage
using MongoDB.Bson.Path;
void Example()
{
var o = BsonDocument.Parse(@"{
""Stores"": [
""Lambton Quay"",
""Willis Street""
],
""Manufacturers"": [
{
""Name"": ""Acme Co"",
""Products"": [
{
""Name"": ""Anvil"",
""Price"": 50
}
]
},
{
""Name"": ""Contoso"",
""Products"": [
{
""Name"": ""Elbow Grease"",
""Price"": 99.95
},
{
""Name"": ""Headlight Fluid"",
""Price"": 4
}
]
}
]
}");
string name = (string)o.SelectToken("Manufacturers[0].Name");
// Acme Co
decimal productPrice = o.SelectToken("Manufacturers[0].Products[0].Price").ToDecimal();
// 50
string productName = (string)o.SelectToken("Manufacturers[1].Products[0].Name");
// Elbow Grease
Assert.AreEqual("Acme Co", name);
Assert.AreEqual(50m, productPrice);
Assert.AreEqual("Elbow Grease", productName);
IList<string> storeNames = o.SelectToken("Stores").AsBsonArray.Select(s => (string)s).ToList();
// Lambton Quay
// Willis Street
IList<string> firstProductNames = o["Manufacturers"].AsBsonArray.Select(
m => (string)m.AsBsonDocument.SelectToken("Products[1].Name")).ToList();
// null
// Headlight Fluid
decimal totalPrice = o["Manufacturers"].AsBsonArray.Aggregate(
0M, (sum, m) => sum + m.AsBsonDocument.SelectToken("Products[0].Price").ToDecimal());
// 149.95
}
Local Development
Hacking on MongoDB.Bson.Path
is easy! To quickly get started clone the repo:
git clone https://github.com/blushingpenguin/MongoDB.Bson.Path.git
cd MongoDB.Bson.Path
To compile the code and run the tests just open the solution in Visual Studio 2019 Community Edition. To generate a code coverage report run cover.ps1 from the solution directory.
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | 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.1
- MongoDB.Bson (>= 2.10.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.