DeepEqual.Bindings 1.0.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package DeepEqual.Bindings --version 1.0.0.3
NuGet\Install-Package DeepEqual.Bindings -Version 1.0.0.3
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.3">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
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.3
#r "nuget: DeepEqual.Bindings, 1.0.0.3"
#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.3

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

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.

There are no supported framework assets in this 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,796 5/14/2016
1.0.0.4 952 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