JsonPathToModel 1.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package JsonPathToModel --version 1.0.1                
NuGet\Install-Package JsonPathToModel -Version 1.0.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JsonPathToModel" Version="1.0.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonPathToModel --version 1.0.1                
#r "nuget: JsonPathToModel, 1.0.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install JsonPathToModel as a Cake Addin
#addin nuget:?package=JsonPathToModel&version=1.0.1

// Install JsonPathToModel as a Cake Tool
#tool nuget:?package=JsonPathToModel&version=1.0.1                

JsonPathToModel

Use JsonPath to navigate through .NET in memory models

Usage:

var model = new SampleModel
{
    Id = "7",
    Name = "Gerry",
    Nested = new([new SampleNested { Id = "xyz", Name = "Pedro" }])
};

var navi = new JsonPathModelNavigator();

var resultSingle = navi.GetValue(model, "$.Id");
navi.GetValue(model, "$.Nested[0].Name");

var resultValues = navi.SelectValues(model, "$.Nested[*].Id");
navi.SelectValues(model, "$.Nested[*].Name");

var result = navi.SetValue(model, "$.Nested[0].Name", "Abdula");

Model:

public class SampleModel
{
    public string Id { get; set; } 
    public string Name { get; set; }
    public List<SampleNested> Nested { get; set; } = [];
}

public class SampleNested
{
    public string Id { get; set; }
    public string Name { get; set; }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on JsonPathToModel:

Package Downloads
MicroFlows

Use MicroFlows to implement Stateful workflows for microservices

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.6.1 344 10/14/2024
1.6.0 116 9/21/2024
1.5.7 140 9/16/2024 1.5.7 is deprecated because it has critical bugs.
1.5.6 422 9/16/2024
1.5.5 118 9/14/2024
1.5.4 93 9/14/2024
1.5.3 163 9/13/2024
1.5.2 94 9/13/2024
1.5.1 98 9/13/2024
1.5.0 99 9/13/2024
1.4.0 168 9/9/2024
1.3.2 202 9/6/2024
1.3.1 221 9/2/2024
1.3.0 97 9/2/2024
1.2.6 96 8/29/2024
1.2.5 101 8/29/2024
1.2.4 101 8/27/2024
1.2.3 91 8/27/2024
1.2.2 101 8/26/2024
1.2.1 96 8/26/2024
1.2.0 144 8/25/2024 1.2.0 is deprecated because it has critical bugs.
1.1.0 106 8/20/2024
1.0.1 125 8/19/2024
1.0.0 127 8/19/2024