In RepoDB, the way we generated the hashcode was to simply sum the 2 objects hashcode with '+'. This is not advisable in general as the collision may happen on this regards. We recommend to refactor the code to utilize the HashCode.Combine() method instead.
In RepoDB, the way we generated the hashcode was to simply sum the 2 objects hashcode with '+'. This is not advisable in general as the collision may happen on this regards. We recommend to refactor the code to utilize the HashCode.Combine() method instead.