Generator.Equals.Runtime 4.0.0-alpha4

This is a prerelease version of Generator.Equals.Runtime.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Generator.Equals.Runtime --version 4.0.0-alpha4
                    
NuGet\Install-Package Generator.Equals.Runtime -Version 4.0.0-alpha4
                    
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="Generator.Equals.Runtime" Version="4.0.0-alpha4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Generator.Equals.Runtime" Version="4.0.0-alpha4" />
                    
Directory.Packages.props
<PackageReference Include="Generator.Equals.Runtime" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Generator.Equals.Runtime --version 4.0.0-alpha4
                    
#r "nuget: Generator.Equals.Runtime, 4.0.0-alpha4"
                    
#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.
#:package Generator.Equals.Runtime@4.0.0-alpha4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Generator.Equals.Runtime&version=4.0.0-alpha4&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Generator.Equals.Runtime&version=4.0.0-alpha4&prerelease
                    
Install as a Cake Tool

Nuget

Generator.Equals

A source code generator for automatically implementing IEquatable<T> using only attributes.


Requirements

In order to use this library, you must:

  • Use a target framework that supports .NET Standard >= 2.0
  • Set your project's C# LangVersion property to 9.0 or higher.

Installation

Simply add the package Generator.Equals to your project. Keep reading to learn how to add the attributes to your types.

Migrating from version 3

Inherited Equality Attributes

Version 4 introduces support for inherited equality attributes on overridden properties, making repeating attributes unnecessary. When a child class overrides a virtual property from a parent class, it now automatically inherits the equality attribute (e.g., [OrderedEquality]) from the parent. You no longer need to redeclare attributes on overriding properties.

[Equatable]
public partial class Parent
{
    [OrderedEquality]
    public virtual int[] Values { get; set; }
}

[Equatable]
public partial class Child : Parent
{
    // Automatically inherits [OrderedEquality] from Parent
    public override int[] Values { get; set; }
}

Improved Inheritance Chain Detection

Version 4 improves how base.Equals() is called in inheritance hierarchies. Previously, generated code would only call base.Equals() if the immediate base class had [Equatable]. Now, the generator walks the entire inheritance chain and calls base.Equals() if:

  1. Any ancestor has the [Equatable] attribute, OR
  2. Any ancestor has manually overridden Equals(object)

This fixes scenarios where equality was incorrectly skipped in multi-level inheritance:

[Equatable]
public partial class GrandParent
{
    public string Name { get; set; }
}

// No [Equatable] - inherits GrandParent's Equals
public class Parent : GrandParent
{
    public int Age { get; set; }
}

[Equatable]
public partial class Child : Parent
{
    public string School { get; set; }
}

Before (v3): Child.Equals() did NOT call base.Equals() because Parent lacks [Equatable]. Only School was compared, ignoring Name.

After (v4): Child.Equals() calls base.Equals() because GrandParent has [Equatable]. Both School and Name are compared correctly.

Ignore Inherited Members

The IgnoreInheritedMembers property controls how inherited members are handled:

IgnoreInheritedMembers Any Ancestor has [Equatable] Behavior
true N/A Compare only declared members, type check, no base.Equals()
false Yes Call base.Equals(), let ancestor handle its members
false No Type check + compare ALL inherited properties from entire chain
[Equatable(IgnoreInheritedMembers = true)]
public partial class Child : Parent
{
    // Will NOT call base.Equals() even if Parent has [Equatable]
    // Only properties defined in Child are compared
    public string School { get; set; }
}

Migrating from version 2

Migrating to version 3 is very straightforward.

  1. Ensure projects are targeting C# 9.0 or latter using the MSBuild property LangVersion.
  2. Be aware that IEquatable<T> for classes is now implemented explicitly in order to support deep equality. As a result, the method Equals(T) method is no longer marked as public. Most code should still work, requiring only to be recompiled as the ABI has changed.

If you have an existing project using Generator.Equals and don't need any of the new features, you can still use version 2.x. The differences are minimal between both major versions.

Usage

The below sample shows how to use Generator.Equals to override the default equality implementation for a C# record, enhancing it with the ability to determine the equality between the array contents of the record.

using Generator.Equals;

[Equatable]
partial record MyRecord(
    [property: OrderedEquality] string[] Fruits
);

class Program
{
    static void Main(string[] args)
    {
        var record1 = new MyRecord(new[] {"banana", "apple"});
        var record2 = new MyRecord(new[] {"banana", "apple"});

        Console.WriteLine(record1 == record2);
    }
}

Need more than records? Generator.Equals supports properties (and fields) also across classes, structs and record structs.

using Generator.Equals;

[Equatable]
partial class MyClass
{
    [DefaultEquality] 
    private int _secretNumber = 42;

    [OrderedEquality] 
    public string[] Fruits { get; set; }
}

[Equatable]
partial struct MyStruct
{
    [OrderedEquality] 
    public string[] Fruits { get; set; }
}

[Equatable]
partial record struct MyRecordStruct(
    [property: OrderedEquality] string[] Fruits
);

Supported Comparers

Below is a list of all supported comparers. Would you like something else added? Let me know by raising an issue or sending a PR!

Default

This is the comparer that's used when a property has no attributes indicating otherwise. The generated code will use EqualityComparer<T>.Default for both equals and hashing operation.

Fields are not used in comparison unless explicitly annotated. To enable the default comparison for a field, annotate it with the DefaultEquality attribute.

IgnoreEquality

[IgnoreEquality] 
public string Name { get; set; }

As the name implies, the property is ignored during Equals and GetHashCode calls!

OrderedEquality

[OrderedEquality]
public string[] Fruits { get; set; } // Fruits have to be in the same order for the array to be considered equal.

This equality comparer will compare properties as a sequence instead of a reference. This works just like Enumerable.SequenceEqual, which assumes both lists are of the same size and same sort.

Bear in mind that the property has to implement IEnumerable<T> and the that the items themselves implement equality (you can use Generator.Equals in the items too!).

You can also specify a custom comparer for the elements:

// Using StringComparison for string collections
[OrderedEquality(StringComparison.OrdinalIgnoreCase)]
public string[] Tags { get; set; }

// Using a custom comparer type
[OrderedEquality(typeof(StringComparer), nameof(StringComparer.OrdinalIgnoreCase))]
public string[] Names { get; set; }

// Using a custom IEqualityComparer<T> with a Default static member
[OrderedEquality(typeof(MyCustomComparer))]
public string[] Values { get; set; }

UnorderedEquality

[UnorderedEquality]
public string[] Fruits { get; set; } // Does not care about the order of the fruits!

[UnorderedEquality]
public IDictionary<string, object> Properties { get; set; } // Works with dictionaries too!

This equality comparer will compare properties as an unordered sequence instead of a reference. This works just like Enumerable.SequenceEqual, but it does not care about the order as long as the all values (including the repetitions) are present.

As with OrderedEquality, bear in mind that the property (or key and values if using a dictionary) has to implement IEnumerable<T> and the that the items themselves implement equality (you can use Generator.Equals in the items too!).

You can also specify a custom comparer for the elements:

// Using StringComparison for string collections
[UnorderedEquality(StringComparison.OrdinalIgnoreCase)]
public List<string> Tags { get; set; }

// Using a custom comparer type
[UnorderedEquality(typeof(StringComparer), nameof(StringComparer.OrdinalIgnoreCase))]
public List<string> Names { get; set; }

SetEquality

[SetEquality]
public HashSet<string> Fruits { get; set; } // Fruits can be in any order and duplicates are ignored

This equality comparer will do a set comparison, using SetEquals whenever the underlying collection implements ISet<T>, otherwise falling back to manually comparing both collections, which can be expensive for large collections.

You can also specify a custom comparer for the elements:

// Using StringComparison for string collections
[SetEquality(StringComparison.OrdinalIgnoreCase)]
public HashSet<string> Tags { get; set; }

// Using a custom comparer type
[SetEquality(typeof(StringComparer), nameof(StringComparer.OrdinalIgnoreCase))]
public HashSet<string> Names { get; set; }

Hashing always returns 0 for this type of equality.

ReferenceEquality

[ReferenceEquality] 
public string Name { get; set; } // Will only return true if strings are the same reference (eg. when used with string.Intern)

This will ignore whatever equality is implemented for a particular object and compare references instead.

StringEquality

[StringEquality(StringComparison.CurrentCulture | CurrentCultureIgnoreCase | InvariantCulture | InvariantCultureIgnoreCase | Ordinal | OrdinalIgnoreCase)]
public string Title { get; set; } // Will use the StringComparison set in constructor when comparing strings

CustomEquality

class LengthEqualityComparer : IEqualityComparer<string>
{
    public static readonly LengthEqualityComparer Default = new();

    public bool Equals(string? x, string? y) => x?.Length == y?.Length;

    public int GetHashCode(string obj) => obj.Length.GetHashCode();
}

class NameEqualityComparer 
{
    public static readonly IEqualityComparer<string> Default = new SomeCustomComparer();
}


[CustomEquality(typeof(LengthEqualityComparer))] 
public string Name1 { get; set; } // Will use LengthEqualityComparer to compare the values of Name1.

[CustomEquality(typeof(NameEqualityComparer))] 
public string Name2 { get; set; } // Will use NameEqualityComparer.Default to compare values of Name2.

[CustomEquality(typeof(StringComparer), nameof(StringComparer.OrdinalIgnoreCase))] 
public string Name2 { get; set; } // Will use StringComparer.OrdinalIgnoreCase to compare values of Name2.

This attribute allows you to specify a custom comparer for a particular property. For it to work, the type passed as an argument to CustomEqualityAttribute should fulfill AT LEAST one of the following:

  • Have a static field/property named Default returning a valid IEqualityComparer<T> instance for the target type;
  • Have a static field/property with the same name passed to the CustomComparerAttribute returning a valid IEqualityComparer<T> instance for the target type;
  • Implement IEqualityComparer<T> and expose a parameterless constructor.

Advanced Options

Explicit Mode

The generator allows you to explicitly specify which properties are used to generate the IEquatable.

To do this, set the Explicit property of EquatableAttribute to true and specify the required properties using DefaultEqualityAttribute or other attributes.

using Generator.Equals;

[Equatable(Explicit = true)]
partial class MyClass
{
    // Only this property will be used for equality!
    [DefaultEquality] 
    public string Name { get; set; } = "Konstantin"; 
    
    public string Description { get; set; } = "";
}

Ignore Inherited Members

By default (IgnoreInheritedMembers = false), the generated code handles inherited members as follows:

  • If any ancestor has [Equatable] or a custom Equals override, base.Equals() is called to delegate equality
  • If NO ancestor has [Equatable], all inherited properties from the entire chain are explicitly compared

Set IgnoreInheritedMembers = true to skip calling base.Equals() and ignore all inherited properties. This is useful when you want to completely redefine equality for a derived class without considering the base class's properties.

using Generator.Equals;

[Equatable]
partial class Person
{
    public string Name { get; set; }
}

[Equatable(IgnoreInheritedMembers = true)]
partial class Doctor : Person
{
    // Will NOT call base.Equals(), so Person.Name is not compared.
    // Only Id and Specialization are used for equality.
    public string Id { get; set; }
    public string Specialization { get; set; }
}
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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Generator.Equals.Runtime:

Package Downloads
Generator.Equals

A source code generator for automatically implementing IEquatable<T> using only attributes.

ZeroInstall.Model

Zero Install data model for the feed format

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0-alpha8 112 2/9/2026
4.0.0-alpha7 199 2/1/2026
4.0.0-alpha6 119 1/30/2026
4.0.0-alpha5 120 1/30/2026
4.0.0-alpha4 122 1/30/2026
4.0.0-alpha3 117 1/30/2026
4.0.0-alpha2 123 1/30/2026
4.0.0-alpha1 118 1/29/2026
3.3.0 12,457 1/25/2026
3.2.1 191,907 7/24/2025
3.2.0 249,183 11/18/2024
3.2.0-alpha1 200 10/17/2024
3.1.1 120,564 4/17/2024
3.1.0 150,141 2/2/2024
3.0.1 26,862 1/23/2024
3.0.0 164,016 6/12/2023
3.0.0-beta007 459 4/23/2023
3.0.0-beta002 331 1/8/2023
3.0.0-beta001 455 1/7/2023
2.7.6 53,500 1/5/2023
2.7.5 2,034 1/3/2023
2.7.4 1,137 1/2/2023
2.7.3 1,105 1/2/2023
2.7.2 1,237 12/31/2022
2.7.1 2,216 12/18/2022
2.7.0 4,111 12/9/2022
2.6.0 74,651 10/24/2022
2.5.1 18,190 9/19/2022
2.5.0 1,818 9/18/2022
2.4.0 6,600 8/25/2022
2.3.2 11,820 6/28/2022
2.3.1 9,536 6/5/2022
2.3.0 4,623 5/15/2022
2.2.3 19,370 10/9/2021
2.2.2 1,221 10/9/2021
2.2.0 1,710 6/3/2021
2.1.4 1,214 6/3/2021
2.1.3 1,423 3/23/2021
2.1.2 1,208 3/22/2021
2.1.1 1,371 11/24/2020
2.1.0 1,230 11/24/2020
2.0.1 1,273 11/16/2020
2.0.0 1,393 11/14/2020
1.0.0 1,428 11/14/2020
0.6.2 1,254 11/13/2020
0.6.1 1,288 11/13/2020
0.6.0 1,240 11/13/2020
0.5.0 1,309 11/13/2020
0.4.1-alpha1 603 11/13/2020
0.4.0 1,264 11/13/2020
0.3.0 1,246 11/12/2020
0.2.1 1,293 11/12/2020
0.2.0 1,235 11/12/2020
0.1.0 1,598 11/12/2020
0.1.0-alpha1 695 11/9/2020