FluentDataBuilder.Json
1.1.17
See the version list below for details.
dotnet add package FluentDataBuilder.Json --version 1.1.17
NuGet\Install-Package FluentDataBuilder.Json -Version 1.1.17
<PackageReference Include="FluentDataBuilder.Json" Version="1.1.17" />
paket add FluentDataBuilder.Json --version 1.1.17
#r "nuget: FluentDataBuilder.Json, 1.1.17"
// Install FluentDataBuilder.Json as a Cake Addin #addin nuget:?package=FluentDataBuilder.Json&version=1.1.17 // Install FluentDataBuilder.Json as a Cake Tool #tool nuget:?package=FluentDataBuilder.Json&version=1.1.17
FluentDataBuilder
A fluent data builder for json and xml
DataBuilder Output Libraries
FluentDataBuilder has some NuGet-Libraries to generate output:
System.Text.Json - FluentDataBuilder.Json
install the nuget FluentDataBuilder.Json
and follow the general DataBuilder steps. the following code is a sample for the initialization with System.Text.Json.
IDataBuilder builder = new DataBuilder();
<br />
...
<br />
JsonDocument jsonResult = builder.Build();
<br />
Newtonsoft.Json - FluentDataBuilder.NewtonsoftJson
install the nuget FluentDataBuilder.NewtonsoftJson
and follow the general DataBuilder steps. the following code is a sample for the initialization with Newtonsoft.Json.
IDataBuilder builder = new DataBuilder();
<br />
...
<br />
JObject jsonResult = builder.Build();
<br />
(coming soon) - FluentDataBuilder.Xml
How to create Data Objects
First you need to create an instance:
IDataBuilder builder = new DataBuilder();
<br />
Use the Add-Method to add data:
add simple properties
builder.Add("StringProperty", "a value");
<br />
builder.Add("NumericProperty", 12345);
<br />
builder.Add("BooleanProperty", true);
<br />
result (in json):
{
<br />
"StringProperty": "a value",
<br />
"NumericProperty": 12345,
<br />
"BooleanProperty": true
<br />
}
<br />
add arrays
builder.Add("ListProperty", new List<string> { "this", "is", "a", "test" });
<br />
builder.Add("ArrayProperty", new string[] { "this", "is", "a", "test" });
<br />
builder.Add("MixedListProperty", new List<object> { "value", 123, true, 456.78 });
<br />
result (in json):
{
<br />
"ListProperty":
<br />
[
<br />
"this",
<br />
"is",
<br />
"a",
<br />
"test"
<br />
],
<br />
"ArrayProperty":
<br />
[
<br />
"this",
<br />
"is",
<br />
"a",
<br />
"test"
<br />
],
<br />
"MixedListProperty":
<br />
[
<br />
"value",
<br />
123,
<br />
true,
<br />
456.78
<br />
]
<br />
}
<br />
add new object
builder.Add("ObjectProperty", new DataBuilder()
<br />
.Add("StringProperty", "another value")
<br />
.Add("NumericProperty", 67890)
<br />
.Add("BooleanProperty", false));
<br />
result (in json):
{
<br />
"ObjectProperty":
<br />
{
<br />
"StringProperty": "another value",
<br />
"NumericProperty": 67890,
<br />
"BooleanProperty": false
<br />
}
<br />
}
<br />
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
- FluentDataBuilder (>= 1.1.15)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on FluentDataBuilder.Json:
Package | Downloads |
---|---|
FluentDataBuilder.Microsoft.Extensions.Configuration
fluent data builder for json and xml |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
8.0.108 | 83 | 10/16/2024 |
1.2.107 | 192 | 7/24/2024 |
1.2.106 | 90 | 7/24/2024 |
1.2.105 | 445 | 4/28/2024 |
1.2.104 | 522 | 12/24/2023 |
1.2.103 | 159 | 12/23/2023 |
1.2.84 | 176 | 12/6/2023 |
1.2.83 | 184 | 12/6/2023 |
1.2.82 | 136 | 12/6/2023 |
1.2.77 | 178 | 11/18/2023 |
1.2.75 | 110 | 11/17/2023 |
1.2.74 | 192 | 11/17/2023 |
1.2.73 | 145 | 11/17/2023 |
1.1.69 | 210 | 9/28/2023 |
1.1.68 | 216 | 9/28/2023 |
1.1.67 | 143 | 9/28/2023 |
1.1.66 | 159 | 9/27/2023 |
1.1.65 | 156 | 9/27/2023 |
1.1.64 | 134 | 9/27/2023 |
1.1.53 | 182 | 9/17/2023 |
1.1.52 | 213 | 9/17/2023 |
1.1.51 | 147 | 9/17/2023 |
1.1.50 | 124 | 9/17/2023 |
1.1.49 | 156 | 9/17/2023 |
1.1.46 | 142 | 9/17/2023 |
1.1.45 | 129 | 9/17/2023 |
1.1.44 | 127 | 9/17/2023 |
1.1.36 | 168 | 9/6/2023 |
1.1.35 | 177 | 9/6/2023 |
1.1.34 | 148 | 9/6/2023 |
1.1.33 | 146 | 9/5/2023 |
1.1.32 | 117 | 9/5/2023 |
1.1.27 | 201 | 8/26/2023 |
1.1.22 | 218 | 8/13/2023 |
1.1.21 | 150 | 8/11/2023 |
1.1.17 | 163 | 8/3/2023 |
1.1.14 | 158 | 8/2/2023 |
1.1.0 | 155 | 8/2/2023 |