I am getting data with an updated timestamp that I would like to ignore for example:
public record Person
{
public string LastName,
public string FirstName,
public string MiddleName,
[isThereAnAttributeThatICanPutHere]
public DateTime UpdatedAt
}
C# records auto generates code that compares records by value, and I would like to take advantage of that feature but need to exclude one field. I know that I can provide my own GetHashCode but that would defeat the purpose of trying to stay simple. I also know that I can compare with the following:
person1 with {UpdateAt = null} == person2 with {UpdateAt = null} // this will need UpdatedAt to be nullable
but that looks like needless allocations.
No, at the moment there is nothing built-in, so unless you are willing to write your own custom implementation (potentially using source generators), you are limited to manually overriding Equals (and GetHashCode, just in case). Something similar was discussed for PrintMembers in this issue, and it seems that the attribute approach is not considered by the .NET team.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With