Weknow.Text.Json.Extensions
5.1.44
See the version list below for details.
dotnet add package Weknow.Text.Json.Extensions --version 5.1.44
NuGet\Install-Package Weknow.Text.Json.Extensions -Version 5.1.44
<PackageReference Include="Weknow.Text.Json.Extensions" Version="5.1.44" />
paket add Weknow.Text.Json.Extensions --version 5.1.44
#r "nuget: Weknow.Text.Json.Extensions, 5.1.44"
// Install Weknow.Text.Json.Extensions as a Cake Addin #addin nuget:?package=Weknow.Text.Json.Extensions&version=5.1.44 // Install Weknow.Text.Json.Extensions as a Cake Tool #tool nuget:?package=Weknow.Text.Json.Extensions&version=5.1.44
Weknow Json Extensions
Functionality of this library includes:
- YieldWhen
- Filter
- [Path based Filter][#Path-based-Filter]
- Exclude
- Merge
- [Merge Into][#Merge-Into]
- Serialization
YieldWhen
Enumerate over json elements.
With Path
Rely on path convention:
json.YieldWhen(/path convention/);
{
"friends": [
{
"name": "Yaron",
"id": 1
},
{
"name": "Aviad",
"id": 2
}
]
}
- "friends.[].name" or "friends.*.name" will result with ["Yaron", "Aviad"]
- "friends.[0].name" or "friends.*.name" will result with ["Yaron"]
- "friends.[0].*" or "friends.*.name" will result with ["Yaron",1]
See: YieldWhen_Path_Test
With Filter
using static System.Text.Json.TraverseFlowInstruction;
var items = source.YieldWhen((json, deep, breadcrumbs) =>
{
string last = breadcrumbs[^1];
if(deep == 0 && last == "skills")
return Drill;
return deep switch
{
< 3 => Drill,
_ => Do(TraverseFlow.SkipToParent),
};
});
Filter
Filter operation, clean up the element according to a filter.
It excludes whatever doesn't match the filter
{
"A": 10,
"B": [
{ "Val": 40 },
{ "Val": 20 },
{ "Factor": 20 }
],
"C": [0, 25, 50, 100 ],
"Note": "Re-shape json"
}
Filter:
JsonElement source = ..;
var target = source.Filter((e, _, _) =>
e.ValueKind != JsonValueKind.Number || e.GetInt32() > 30
? TraverseFlowWrite.Drill
: TraverseFlowWrite.Skip);
Will result in:
{
"B": [ { "Val": 40 }],
"C": [ 50, 100 ],
"Note": "Re-shape json"
}
Path based Filter
var target = source.Filter("B.*.val");
// results: {"B":[{"Val":40},{"Val":20}]}
var target = source.Filter("B.[]");
// results: {"B":[{"Val":40},{"Val":20},{"Factor":20}]}
var target = source.Filter("B.[].Factor");
// results: {"B":[{"Factor":20}]}
var target = source.Filter("B.[1].val");
// results: {"B":[{"Val":20}]}
Exclude
Exclude is kind of opposite of Filter. It instruct which elements to remove.
{
"A": 10,
"B": [
{ "Val": 40 },
{ "Val": 20 },
{ "Factor": 20 }
],
"C": [0, 25, 50, 100 ],
"Note": "Re-shape json"
}
var target = source.Exclude("B.*.val");
// results: {"A":10,"B":[{"Factor":20}],"C":[0,25,50,100],"Note":"Re-shape json"}
var target = source.Exclude("B.[]");
// results: {"A":10,"B":[],"C":[],"Note":"Re-shape json"}
var target = source.Exclude("B.[1]");
// results: {"A":10,"B":[{"Val":40},{"Factor":20}],"C":[0,50,100],"Note":"Re-shape json"}
var target = source.Exclude("B");
// results: {"A":10,"C":[0,25,50,100],"Note":"Re-shape json"}
Merge
Merging 2 or more json. The last json will override previous on conflicts
{
"A": 1
}
{
"B": 2
}
var target = source.Merge(joined);
// results: {"A":1,"B":2}
var target = source.Merge(new { B = 2}); // anonymous type
// results: {"A":1,"b":2}
More scenarios:
- {"A":1}.Merge({"B":2,"C":3}) = {"A":1, "B":2, "C"":3}
- {"A":1}.Merge({"B":2},{"C":3}) = {"A":1, "B":2, "C"":3}
- {"A":1}.Merge({"B":2},{"C":3}) = {"A":1, "B":2, "C"":3}
Merge Into
Merging json into specific path of a source json. The last json will override previous on conflicts
{
"A": 1,
"B": {
"B1":[1,2,3]
}
}
var joined = 5;
var target = source.MergeInto("B.B1.[1]", joined);
// results: { "A": 1, "B": { "B1":[1,5,3] }
}
var joined = ... // {"New":"Object"};
var target = source.MergeInto("B.B1.[1]", joined);
// results: { "A": 1, "B": { "B1":[1,{"New":"Object"},3] }
}
var joined = new {"New":"Object"}; // anonymous type
var target = source.MergeInto("B.B1.[1]", joined);
// results: { "A": 1, "B": { "B1":[1,{"new":"Object"},3] }
}
Serialization
ToJson
Convert .NET object into JsonElement.
var entity = new Entity(12, new BEntity("Z"));
JsonElement json = entity.ToJson();
var arr = new []{ 1, 2, 3 };
JsonElement json = arr.ToJson();
AsString
Convert JsonElement to string
JsonElement json = ...;
string compact = json.AsString();
string indented = json.AsIndentString();
string raw = json.GetRawText(); // same as json.AsIndentString();
ToStream
Convert JsonElement to stream
JsonElement json = ...;
Stream srm = json.ToStream();
ImmutableDictionary converter.
JsonStringEnumConverter EnumConvertor = new JsonStringEnumConverter(JsonNamingPolicy.CamelCase);
var options = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
// Add the converter
Converters = { EnumConvertor, JsonImmutableDictionaryConverter.Default }
};
var source = new Dictionary<ConsoleColor, string>
{
[ConsoleColor.Blue] = nameof(ConsoleColor.Blue),
[ConsoleColor.White] = nameof(ConsoleColor.White)
};
string json = JsonSerializer.Serialize(source, options);
T deserialized = JsonSerializer.Deserialize<T>(json, options);
Looking for other extensions?
Check the following
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Weknow.Text.Json.Extensions:
Package | Downloads |
---|---|
Weknow.EventSource.Backbone.Contracts
Package Description |
|
Weknow.EventSource.Backbone.Channels.RedisProvider.Common
Package Description |
|
Weknow.EventSource.Backbone.Channels.S3StoreProvider.Common
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.1.50 | 1,523 | 2/16/2023 |
5.1.49 | 1,516 | 1/23/2023 |
5.1.48 | 290 | 1/22/2023 |
5.1.47 | 2,445 | 12/19/2022 |
5.1.46 | 1,031 | 11/15/2022 |
5.1.44 | 19,109 | 9/24/2022 |
5.1.43 | 14,712 | 4/12/2022 |
5.1.42 | 436 | 4/12/2022 |
5.1.41 | 457 | 4/12/2022 |
5.1.40 | 443 | 3/16/2022 |
5.1.39 | 2,103 | 3/16/2022 |
5.1.38 | 2,166 | 3/10/2022 |
5.1.37 | 7,088 | 3/10/2022 |
5.1.36 | 429 | 3/10/2022 |
5.1.35 | 2,143 | 3/10/2022 |
5.1.34 | 466 | 3/10/2022 |
5.1.21 | 13,662 | 3/2/2022 |
5.1.20 | 2,154 | 3/2/2022 |
5.1.18 | 10,335 | 1/17/2022 |
5.1.17 | 2,425 | 1/13/2022 |
5.1.16 | 5,219 | 1/6/2022 |
5.1.15 | 11,174 | 12/28/2021 |
5.1.14 | 1,182 | 12/28/2021 |
5.1.13 | 8,137 | 11/28/2021 |
5.1.9 | 1,863 | 11/28/2021 |
5.1.8 | 14,625 | 11/17/2021 |
5.1.7 | 277 | 11/17/2021 |
5.1.6 | 8,255 | 11/9/2021 |
5.1.5 | 2,098 | 11/8/2021 |
5.1.4 | 1,291 | 11/8/2021 |
5.1.3 | 338 | 11/8/2021 |
5.1.2 | 325 | 11/8/2021 |
5.1.1 | 1,203 | 11/8/2021 |
5.0.14 | 1,252 | 11/7/2021 |
5.0.13 | 363 | 11/3/2021 |
5.0.12 | 2,121 | 11/3/2021 |
5.0.11 | 704 | 8/9/2021 |
5.0.10 | 322 | 8/9/2021 |
5.0.9 | 348 | 8/9/2021 |
5.0.8 | 39,216 | 3/24/2021 |
5.0.7 | 384 | 3/9/2021 |
1.0.7 | 608 | 9/3/2020 |
1.0.6 | 450 | 9/3/2020 |
1.0.5 | 624 | 8/2/2020 |
1.0.4 | 514 | 8/2/2020 |
1.0.3 | 570 | 6/17/2020 |