Equatable.Comparers
1.0.0-beta.2
See the version list below for details.
dotnet add package Equatable.Comparers --version 1.0.0-beta.2
NuGet\Install-Package Equatable.Comparers -Version 1.0.0-beta.2
<PackageReference Include="Equatable.Comparers" Version="1.0.0-beta.2" />
paket add Equatable.Comparers --version 1.0.0-beta.2
#r "nuget: Equatable.Comparers, 1.0.0-beta.2"
// Install Equatable.Comparers as a Cake Addin #addin nuget:?package=Equatable.Comparers&version=1.0.0-beta.2&prerelease // Install Equatable.Comparers as a Cake Tool #tool nuget:?package=Equatable.Comparers&version=1.0.0-beta.2&prerelease
Equatable.Generator
Source generator for Equals
and GetHashCode
Features
- Override
Equals
andGetHashCode
- Implement
IEquatable<T>
- Support
class
,record
andstruct
types - Support
EqualityComparer
per property - Comparers supported: String, Sequence, Dictionary, HashSet, Reference, and Custom
- No dependencies
Usage
Add package
Add the nuget package to your projects.
dotnet add package Equatable.Generator
Prevent including Equatable.Generator as a dependency
<PackageReference Include="Equatable.Generator" PrivateAssets="all" />
Requirements
This library requires:
- Target framework .NET Standard 2.0 or greater
- Project C#
LangVersion
9.0 or higher
Equatable Attributes
Place equatable attribute on a class
, record
or struct
. The source generator will create a partial with overrides for Equals
and GetHashCode
.
[Equatable]
Marks the class to generate overrides forEquals
andGetHashCode
The default comparer used in the implementation of Equals
and GetHashCode
is EqualityComparer<T>.Default
. Customize the comparer used with the following attributes.
[IgnoreEquality]
Ignore property inEquals
andGetHashCode
implementations[StringEquality]
Use specifiedStringComparer
when comparing strings[SequenceEquality]
UseEnumerable.SequenceEqual
to determine whether enumerables are equal[DictionaryEquality]
Use to determine if dictionaries are equal[HashSetEquality]
UseISet<T>.SetEquals
to determine whether enumerables are equal[ReferenceEquality]
UseObject.ReferenceEquals
to determines whether instances are the same instance[EqualityComparer]
Use the specifiedEqualityComparer
Example Usage
Example of using the attributes to customize the source generation of Equals
and GetHashCode
[Equatable]
public partial class UserImport
{
[StringEquality(StringComparison.OrdinalIgnoreCase)]
public string EmailAddress { get; set; } = null!;
public string? DisplayName { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public DateTimeOffset? LockoutEnd { get; set; }
public DateTimeOffset? LastLogin { get; set; }
[IgnoreEquality]
public string FullName => $"{FirstName} {LastName}";
[HashSetEquality]
public HashSet<string>? Roles { get; set; }
[DictionaryEquality]
public Dictionary<string, int>? Permissions { get; set; }
[SequenceEquality]
public List<DateTimeOffset>? History { get; set; }
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 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. |
.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. |
-
.NETStandard 2.0
- Microsoft.Bcl.HashCode (>= 1.1.1)
-
net6.0
- No dependencies.
-
net8.0
- No dependencies.
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 |
---|---|---|
2.0.0 | 71 | 11/14/2024 |
1.1.0 | 114 | 9/7/2024 |
1.1.0-beta.1 | 57 | 9/7/2024 |
1.0.0 | 109 | 9/5/2024 |
1.0.0-beta.3 | 54 | 9/5/2024 |
1.0.0-beta.2 | 48 | 9/5/2024 |
1.0.0-beta.1 | 50 | 9/5/2024 |
1.0.0-alpha.2 | 51 | 9/4/2024 |
1.0.0-alpha.1 | 47 | 9/4/2024 |