JsonParserMultiple 1.0.0
See the version list below for details.
dotnet add package JsonParserMultiple --version 1.0.0
NuGet\Install-Package JsonParserMultiple -Version 1.0.0
<PackageReference Include="JsonParserMultiple" Version="1.0.0" />
paket add JsonParserMultiple --version 1.0.0
#r "nuget: JsonParserMultiple, 1.0.0"
// Install JsonParserMultiple as a Cake Addin #addin nuget:?package=JsonParserMultiple&version=1.0.0 // Install JsonParserMultiple as a Cake Tool #tool nuget:?package=JsonParserMultiple&version=1.0.0
JsonParserMultiple
Convert Json to DataTable without any model or class
Get the result immediately in a DataTable
Create models or classes for convert json in .NET
You can find the sample project in GitHub
This is a simple way to parse your Json result to DataTable.
Instruction of use Json parser multiple :
Just follow these simple steps to use JsonParser
- download JsonParserMultiple DLL
- Use below samples code.
Just run this sample code to parse Json to DataTable after download the DLL :\
JsonObject
Simple Example :
string JsonStr = "{\"id\":\"1\",\"name\":\"Jack\",\"age\":\"36\"}";
JsonParser.JParser JP = new JsonParser.JParser();
DataTable dt = JP.JsonConvert(JsonStr);
id | name | age |
---|---|---|
1 | Jack | 36 |
JsonArray
Example 1 :
string JsonStr = "[{\"id\":\"1\",\"name\":\"Jack\",\"age\":\"36\"}
,{\"id\":\"2\",\"name\":\"Janatan\",\"age\":\"30\"}
,{\"id\":\"3\",\"name\":\"Natasha\",\"age\":\"32\"}]";
JsonParser.JParser JP = new JsonParser.JParser();
DataTable dt = JP.JsonConvert(JsonStr);
id | name | age |
---|---|---|
1 | Jack | 36 |
2 | Janatan | 30 |
3 | Natasha | 32 |
Example 2 :
It may that our JsonArray have different values in their jsonobjects.
For example :
string JsonStr = "[{\"id\":\"1\",\"name\":\"Jack\",\"age\":\"36\"}
,{\"id\":\"2\",\"name\":\"Janatan\",\"age\":\"30\"}
,{\"id\":\"3\",\"name\":\"Natasha\",\"zipcode\":\"5896472358\"}]";
JsonParser.JParser JP = new JsonParser.JParser();
DataTable dt = JP.JsonConvert(JsonStr);
We have age in first and second jsonobjects, but in third one we have zipcode instead of age.
Consequently in two first row we have zipcode with empty value and in third row we have empty value for age column and this value '5896472358' for zipcode column.
Like below table :
id | name | age | zipcode |
---|---|---|---|
1 | Jack | 36 | |
2 | Janatan | 30 | |
3 | Natasha | 5896472358 |
Object In Object
Sometimes one of our value consists a JsonObject even a JsonArray. we can use JsonParser for value of that column specifically
Example 1 :
string JsonStr = "{\"id\":\"1\",\"product\":\"TV\",\"number\":\"1\"
,\"extrainfo\":{\"product_id\":\"157895004\",\"product_serial\":\"8874500\",\"product_model\":\"M23TU\"}}";
JsonParser.JParser JP = new JsonParser.JParser();
DataTable dt = JP.JsonConvert(JsonStr);
In this JsonObject that concern to a sale order, extrainfo include of another JsonObject.
If you need extrainfo values like ' product_id , product_serial , ... ' you must pass value of extrainfo column to JsonConvert.
The result is like this below table in first step of convert.
id | product | number | extrainfo |
---|---|---|---|
1 | TV | 1 | {"product_id":"157895004","product_serial":"8874500","product_model":"M23TU"} |
In the next step I pass value of extrainfo column to JsonConvert and get values.
Pass value like below code
DataTable dt_extrainfo = JP.JsonConvert(dt.Rows[0]["extrainfo"]);
product_id | product_serial | product_model |
---|---|---|
157895004 | 8874500 | M23TU |
Note: You can use loop (for , while...) for convert another rows simply
DataTable dt_extrainfo;
for (int i = 0; i < dt.Rows.Count; i++)
{
dt_extrainfo = new DataTable();
dt_extrainfo = JP.JsonConvert(dt.Rows[i]["extrainfo"].ToString());
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fast operation