Home > Net >  Is there a C# attribute on a record field to exclude a field from comparison?
Is there a C# attribute on a record field to exclude a field from comparison?

Time:01-12

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.

CodePudding user response:

No, at the moment there is nothing build in, so unless you are willing to write your own custom implementation (potentially using source generators) you are limited to manual overriding of the Equals (and GetHashCode JIC). Something similar was discussed for PrintMembers in this issue and it seems that attribute approach is not considered by the .NET team.

  • Related