DeepEqual.Bindings 1.0.0.5

dotnet add package DeepEqual.Bindings --version 1.0.0.5
NuGet\Install-Package DeepEqual.Bindings -Version 1.0.0.5
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="DeepEqual.Bindings" Version="1.0.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DeepEqual.Bindings --version 1.0.0.5
#r "nuget: DeepEqual.Bindings, 1.0.0.5"
#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 DeepEqual.Bindings as a Cake Addin
#addin nuget:?package=DeepEqual.Bindings&version=1.0.0.5

// Install DeepEqual.Bindings as a Cake Tool
#tool nuget:?package=DeepEqual.Bindings&version=1.0.0.5

DeepEqual.Bindings extends the idea of comparing 2 object graphs (DeepEqual library).
By default, nodes not matched by name between graphs make objects not equal.
With DeepEqual.Bindings you can override that behavior.
You can bind nodes with different names by specifying how they are compared by expression.
The most common usage looks like this:

var a1 = new A1 { B1 = new B1 { Y = "value" } };
var a2 = new A2 { B2 = new B2 { Y = "value" } };
var comparer = ExtendedComparer<A1, A2>.New()
.Bind(x1 => x1.B1, x2 => x2.B2);
var result = comparer.Compare(a1, a2);
//result is true.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0.5 1,793 5/14/2016
1.0.0.4 951 5/13/2016
1.0.0.3 1,028 5/13/2016
1.0.0.2 1,001 5/13/2016
1.0.0.1 1,302 5/13/2016

Available functionalities:
ExtendedComparer.Bind()
ExtendedComparer.Skip()
ExtendedComparer.Reversed()
Unit tests are added.