EMDD.KtEquatable
3.0.0
See the version list below for details.
dotnet add package EMDD.KtEquatable --version 3.0.0
NuGet\Install-Package EMDD.KtEquatable -Version 3.0.0
<PackageReference Include="EMDD.KtEquatable" Version="3.0.0" />
paket add EMDD.KtEquatable --version 3.0.0
#r "nuget: EMDD.KtEquatable, 3.0.0"
// Install EMDD.KtEquatable as a Cake Addin #addin nuget:?package=EMDD.KtEquatable&version=3.0.0 // Install EMDD.KtEquatable as a Cake Tool #tool nuget:?package=EMDD.KtEquatable&version=3.0.0
EMDD.KtEquatable
use of C# 9.0 Source Generator to AutoGenerate IEquatable<T> using attributes.
Requirements
Visual Studio 16.8 or greater
.Net 5.0.102 sdk or greater
Nuget Package Usage
https://www.nuget.org/packages/EMDD.KtEquatable/
<PackageReference Include="EMDD.KtEquatable" Version="*.*.*" />
Breaking Changes and Updates
(2.0.2 to 3.0.0)
- ditched EMDD.KtEquatable.Core, it's not needed any longer.
- The
<IncludeBuildOutput>false</IncludeBuildOutput>
has to be removed in order for the custom attributes to be visible for use, this way the project is treated both as an analyzer and a common library. The only problem is that if a project using this source generator is referenced by another project, this source generator will also be visible on the referencing project.
- The
- Added Diagnostic Reports (Compilation Error Reports)
- Changes on the Attribute usage particularly
FloatingPointEqualityAttribute
- the use of the precision parameter
FloatingPointEqualityAttribute
- Enumerable attributes can be combined with
ReferenceEqualityAttribute
andFloatingPointEqualityAttribute
to produce combined effect UnorderedEquality
,OrderedEquality
, andSetEquality
was replaced withEnumerableEquality
with parameters
- the use of the precision parameter
- Improvement on the indentions of the autogenerated codes
DoubleEnumerableEqualityAttribute
, has been removed
see History of Breaking Changes and Updates
Usage
The source generator can be used by marking the target class/record with [Equatable]
Attribute. The properties can also be marked with specific attributes specify the equality comparison method to be used.
The sample below shows an EmployeeInfo
class marked with the specific Attributes.
using EMDD.KtEquatable.Core.Attributes;
[Equatable]
partial class EmployeeInfo
{
public string? Name { get; set; }
[IgnoreEquality]
public int Id { get; set; }
[FloatingPointEquality(4)]
public double Salary { get; set; }
[EnumerableEquality(EnumerableOrderType.Unordered)]
public Dictionary<string, int>? BankAccountDetails { get; set; }
[EnumerableEquality(EnumerableOrderType.Ordered)]
public List<DateTime>? TimeIn { get; set; }
[ReferenceEquality]
public EmployeeInfo? Superior { get; set; }
[ReferenceEquality]
public string? SocialSecurity { get; set; }
}
class Program
{
static void Main(string[] args)
{
const string SS = "BBB";
EmployeeInfo boss1 = new EmployeeInfo() { Name = "Bob", Id = 1 };
EmployeeInfo boss2 = new EmployeeInfo() { Name = "Bob", Id = 2 };
EmployeeInfo employee1 = new EmployeeInfo() {
Name = "Chipotle",
Id = 3,
Salary = 10000.0003,
BankAccountDetails = new Dictionary<string, int> { { "Wells", 123 }, { "JP", 234 }, { "BoA", 345 } },
Superior = boss1,
TimeIn= new List<DateTime> { new DateTime (2012,3,4), new DateTime(2012, 3, 5), new DateTime(2012, 3, 6) },
SocialSecurity="AAA"
};
EmployeeInfo employee2 = new EmployeeInfo() {
Name = "Chipotle",
Id = 3,
Salary = 10000.0003,
BankAccountDetails = new Dictionary<string, int> { { "Wells", 123 }, { "JP", 234 }, { "BoA", 345 } },
Superior = boss2,
TimeIn= new List<DateTime> { new DateTime (2012,3,4), new DateTime(2012, 3, 5), new DateTime(2012, 3, 6)},
SocialSecurity= SS
};
EmployeeInfo employee3 = new EmployeeInfo() {
Name = "Chipotle",
Id = 3,
Salary = 10000.0004,
BankAccountDetails = new Dictionary<string, int> { { "Wells", 123 }, { "JP", 234 }, { "BoA", 345 } },
Superior = boss2,
TimeIn= new List<DateTime> { new DateTime (2012,3,4), new DateTime(2012, 3, 5), new DateTime(2012, 3, 6) },
SocialSecurity = SS
};
Console.WriteLine(employee1 != employee2);
Console.WriteLine(employee2 == employee3);
}
}
note: the class marked with Equatable including its parent/containing classes must be marked as partial
Supported Attributes
Class/Record Attributes
Equatable
The code generator will only recognize class
orrecord
marked with [Equatable]
.
Todo
Implementation for struct
(if soon be required)
Property Attributes
Default (No Attribute)
A property that is not marked by any Attributes mentioned below will produce a generated code that uses EqualityComparer<T>.Default
when checking Equality and calculating Hashcode.
IgnoreEquality
Properties marked with [IgnoreEquality]
will not be included in the equality checking and Hashcode calculation
[IgnoreEquality]
public string Name { get; set; }
FloatingPointEquality
[FloatingPointEquality(10)]
public double Salary { get; set; } // Must be double
A property marked with [FloatingPointEquality]
will be used in the comparison of equality such that the difference between the compared value should not be less than the precision. the property will be compared using the build-in EqualityComparer:
FloatingPointEqualityComparer
ReferenceEquality
A property marked with [ReferenceEquality]
will use Reference equality checking only
[ReferenceEquality]
public Employee Superior { get; set; }
EnumerableEquality
Comparison of Collections/IEnumerables with specific requirements such as when the order is not or is required or if the collection can have repeated elements.
[Equatable]
partial class Book
{
[EnumerableEquality(EnumerableOrderType.Ordered)]
public DateTime[] Borrower { get; set; }
[EnumerableEquality(EnumerableOrderType.Unordered)]
public string[] BookTitle { get; set; }
[EnumerableEquality(EnumerableOrderType.Set)]
public HashSet<string> Borrowers { get; set; }
}
ReferenceEquality
and FloatingPointEquality
can also be mixed with EnumerableEquality
. Say if you want to compare an List of unordered double property with 3 decimal point precisions:
[Equatable]
partial class Mechanic
{
[EnumerableEquality(EnumerableOrderType.Ordered)]
[FLoatingPointEquality(3)]
public System.List<double> Payments { get; set; }
}
The Payments
property will be compared using new UnorderedEqualityComparer(new FloatingPointEqualityComparer(3))
Diagnostic Reports
Compile-time Diagnostic reports were added at 3.0.0
.
see Diagnostic Lists
Product | Versions 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. |
.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.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Adding Method for IEnumerable<double>