JsonPathToModel 1.2.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package JsonPathToModel --version 1.2.4                
NuGet\Install-Package JsonPathToModel -Version 1.2.4                
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.2.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonPathToModel --version 1.2.4                
#r "nuget: JsonPathToModel, 1.2.4"                
#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.2.4

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

JsonPathToModel

Use JSONPath to navigate through .NET in-memory models

DI registration:

// program
...
    services.AddJsonPathToModel(options => 
                { 
                    options.OptimizeWithCodeEmitter = true;
                });
...

// constructor
public void MyService(IJsonPathModelNavigator navigator)
...

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");

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; }
}

Release Notes

1.2.0 - 1.2.4:

  • Dramatically improved performance
  • Added DI services registration
  • Added Sigil Emitter optimizations for GetValue/SetValue simple expressions like '$.Person.FirstName'
  • Added Tokenizer for parsing JSONPath expressions
  • Added DateTime auto-convert for SetValue, it works only when OptimizeWithCodeEmitter = false
  • Refactored exceptions
  • → NETStandard2.1
  • Breaking changes: GetValue now throws exceptions, for Result<> pattern use GetValueResult

1.0.0 - 1.1.0:

  • Initital import from ProCodersPtyLtd/BlazorForms
Product 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. 
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.0 0 9/21/2024
1.5.7 105 9/16/2024 1.5.7 is deprecated because it has critical bugs.
1.5.6 147 9/16/2024
1.5.5 74 9/14/2024
1.5.4 65 9/14/2024
1.5.3 113 9/13/2024
1.5.2 68 9/13/2024
1.5.1 69 9/13/2024
1.5.0 71 9/13/2024
1.4.0 129 9/9/2024
1.3.2 154 9/6/2024
1.3.1 173 9/2/2024
1.3.0 67 9/2/2024
1.2.6 69 8/29/2024
1.2.5 71 8/29/2024
1.2.4 73 8/27/2024
1.2.3 69 8/27/2024
1.2.2 81 8/26/2024
1.2.1 75 8/26/2024
1.2.0 106 8/25/2024 1.2.0 is deprecated because it has critical bugs.
1.1.0 85 8/20/2024
1.0.1 103 8/19/2024
1.0.0 102 8/19/2024