IEqualityComparer is a .NET framework interface that allows the implementation of customized equality comparison for collections. That is, you can create your own definition of equality, and specify that this definition be used with a collection type that accepts the IEqualityComparer interface. ...
1
vote
1answer
45 views
Implementing IEqualityComparer<T> on an object with two properties in C#
I have a case where I need to grab a bunch of items on distinct, but my source is a collection of objects with two properties, like this:
public class SkillRequirement
{
public string Skill { ...
-1
votes
0answers
65 views
Getting Distinct Items with IEqualityComparer only working selectively?
I have a situation where I'm pulling data from the web every 15 minutes to update a csv file of Trade data. The queries always provide the most recent 20,000 trades and there is always a bit of ...
0
votes
2answers
39 views
IEquatable on POCO identity field
I have POCOs from a SQL Server database that have an identity ID field. I would like to implement IEquatable so I can check if they're the same record, use .Contains() on List<T> etc.
Assuming ...
0
votes
2answers
36 views
c# getting a configurable equatable method
I've got a simple factory that's built in C# that instantiates and configures validators that are built in ASP.net and JavaScript. I want a way to test if I'm accidently trying to set a validator ...
0
votes
1answer
76 views
Grouping by IEnumerable<string> does not work at all
I'm not really sure, why grouping by IEnumerable<string> does not work. I provide custom IEqualityComparer, of course.
public class StringCollectionEqualityComparer : ...
0
votes
4answers
55 views
How should I implement IEqualityComparer<T>.Equals
Concerning IEqualityComparer, is there ever a reason why the Equals(T x, T y) implementation should be anything other than what I have below?
public class MyEquality : IEqualityComparer<MyType>
...
0
votes
1answer
69 views
Implementing comparer for collection of collections
I have my class
MyClass<MyTriple<FirstG, SecondG, ThirdG>> : ICollection<MyTriple<FirstG, SecondG, ThirdG>>
I have data stored in:
Dictionary<FirstG, ...
0
votes
1answer
75 views
c# implementing IEqualityComparer<T> for generic class T
Is there any way of implementing IEqualityComparer for generic class?
I tried:
public class MyComparer : IEqualityComparer<MyGenericClass>
which is wrong, because MyGenericClass takes 3 ...
-1
votes
2answers
97 views
ObservableCollection<class name>.Distinct() is not working
I have the next class:
public class MapsDescModel : NotificationObject, IEqualityComparer<MapsDescModel>
{
public MapsDescModel(ObservableCollection<MainCategories> mainCategoty)
...
4
votes
5answers
190 views
Doing Distinct() using base class IEqualityComparer, and still return the child class type?
I have a number of classes that derive from a class BaseClass where BaseClass just has an `Id property.
I now need to do distinct on a collections of some of these objects. I have the following ...
1
vote
1answer
75 views
Why doesn't IEqualityComparer<T> extend IEqualityComparer in .NET
In .NET, the fact that IEnumerable<T> extends IEnumerable often comes in handy. Frustratingly, though IEqualityComparer<T> and IComparer<T> do not extend their non-generic ...
2
votes
1answer
65 views
Not-hash-based set collection for storing unique objects with custom equality comparer - C#
I'm trying to store (name: string, value: long) pair in a set.
public class NameValuePair
{
public string name;
public long value;
}
public NameValuePairComparer comparer = new ...
0
votes
2answers
37 views
What is the difference between an IQueryable's Contains() and an IEnumerable's Contains()?
I have an IQueryable custs, a Customer cust, a CustomerComparer custCp which implements IEqualityComparer.
When I call custs.Contains(cust, custCp) I get an exception:
System.NotSupportedException: ...
0
votes
1answer
50 views
ReSharper not displaying properties from underlying class when creating equality comparers
My setup is the following:
I have POCO classes which are generated by T4 templates based off of my database. My domain models inherit from these POCOs. Basically the POCO models are there so that ...
0
votes
1answer
43 views
How to do dynamic comparison using IEqualityComparer?
I have a person class like so:
Public Class Person
{
public int Id {get; set;}
public int FirstName {get; set;}
public int LastName {get; set;}
}
I create a list of Person objects:
...
0
votes
1answer
97 views
IEqualityComparer for SequenceEqual
In C#, is there a IEqualityComparer<IEnumerable> that uses the SequenceEqual method to determine equality?
3
votes
1answer
83 views
Unit test GetHashCode with developer time in mind
In my current project I have several IEqualitycomparers.
These take several properties of an object and compare them.
Properties can be either equal, different and this both for values and null.
I ...
0
votes
0answers
40 views
Subclass HashSet so that it always uses a certain IEqualityComparer when used in another set
I want to subclass HashSet<Point> so that it uses HashSet<Point>.CreateSetComparer() as an IEqualityComparer whenever I use it inside another set.
Basically every time I do this:
var ...
1
vote
1answer
69 views
IEquatable(Of T)/IEqualityComparer(Of T) Not Being Called
I have some code with two lists of objects. The first list is more inclusive than the second list. I wish to exclude items in the second list from the first list. After some research I found that the ...
3
votes
1answer
205 views
GetHashCode() for long primitive
I am writing a EqualityComparer for a LINQ distinct expression and I am not too sure about the GetHashCode overload method. Would the below code be correct? The Id property is a long primitive.
...
2
votes
2answers
106 views
Using IEqualityComparer to find records
I'm using the following IEqualityComparer to strip special characters from a company name before comparison as follows:
public class CompanyNameIgnoringSpaces : ...
0
votes
1answer
114 views
IEqualityComparer instance for two-dimensional arrays
F# supports structural equality of two-dimensional arrays with the = operator, and in F# collections such as Set. But how can I use the same equality comparison in the .NET class HashSet? By default ...
1
vote
3answers
114 views
Correct way to override Equals(object obj) when dealing with sub/superclasses?
I am using the following code to test for Equals
public override bool Equals(object obj)
{
// Equals must return false on compares to null.
if (obj == null || GetType() != obj.GetType())
...
-1
votes
3answers
103 views
What interfaces must I implement to make a List<T> or Dictionary<T> concatenate two values as a key
I need to make my custom object work correctly in a Dictionary, List, etc... so that I can change properties of the object, and allow it to be resorted, and not orphaned.
The last time I attempted ...
2
votes
2answers
311 views
LINQ GroupBy on multiple ref-type fields; Custom EqualityComparer
So I've looked through about 20 examples on this on SO and elsewhere, but haven't found one which covers what I'm trying to do. This - Can I specify my explicit type comparator inline? - looks like ...
0
votes
1answer
288 views
Checking instance of non-class constrained type parameter for null in generic method
I currently have a generic method where I want to do some validation on the parameters before working on them. Specifically, if the instance of the type parameter T is a reference type, I want to ...
3
votes
1answer
136 views
KeyedCollection String Case Insensitive
Tried following the documentation and I cannot make it work. Have a KeyedCollection with the key string.
How to make the string key case insensitive in a KeyedCollection?
On a Dictionary can just ...
0
votes
4answers
98 views
Filtering Duplicate items in an array based on child array in c#
i have an list of persons with basecode and an array of locations. i need to eliminate the persons in the list having different basecode with same locations and keep persons with differend locations.
...
0
votes
3answers
189 views
get distinct item in List with highest value in property
I have an object AppDetail containing 2 string properties, a name, and a version string (e.g. "1.0.0")
Given a List< AppDetail > that contains duplicates of the same name but different version ...
2
votes
1answer
529 views
Implementing IEqualityComparer<T> for comparing arbitrary properties of any class (including anonymous)
I am writing this neat class implementing IEqualityComparer, so that I can just pass any anonymous type to it (or actually any type with properties) and it will automatically compare the types by ...
0
votes
2answers
274 views
Specify equality with a lambda expression
I want to compare 2 collections. One of these is a List<string> and the other is a List<Book>. Book has a Isbn property of type string, and I want write something like that :
...
0
votes
1answer
159 views
IEqualityComparer<double> with a tolerance; how to implement GetHashCode?
I'm implementing a reusable DoubleEqualityComparer (with a custom tolerance: the "epsilon" constructor parameter) to ease the usage of LINQ with sequences of double. For example:
bool myDoubleFound = ...
6
votes
6answers
125 views
Is it possible to write a hash code function for an comparer that matches many-to-many?
Can I write a hash code function for the following comparer logic?
Two instances of My are equal if at least two properites from (A, B, C) match.
The Equals part is simple, but I'm stumped on the ...
1
vote
2answers
258 views
How do I get a Distinct list to work with EF 4.x DBSet Context and the IEqualityComparer?
I have been trying for hours to get a Distinct to work for my code.
I am using EF 4.3, MVC3, Razor and trying to get a list downto product id and name.
When I run the Sql query against the DB, it's ...
0
votes
1answer
138 views
Using IEqualityComparer to check specific values
So this is the first time I've tried using IEqualityComparer and I'm running into an issue.
It's likely I just don't understand exactly what the code is doing behind the scenes.
The list I'm ...
5
votes
5answers
537 views
Comparing two lists and ignoring a specific property
I have two employee lists that I want to get only unique records from but this has a twist to it. Each list has an Employee class in it:
public class Employee
{
// I want to completely ignore ID in ...
3
votes
2answers
357 views
EqualityComparer<T>.Default misunderstanding?
I have a class Person, it implements Equals() method from IEquatable<Person> (also overrides Object.Equals method, lets ignore the GetHashcode() method for now)
class Person : ...
0
votes
2answers
398 views
IEqualityComparer<T> and custom type
I'm trying to compare custom type in two List<T> and use the Intersect / Except method. The equality is determined by three fields of this type. The equality is based on more than the ordinary ...
14
votes
5answers
2k views
What is the difference between IEqualityComparer<T> and IEquatable<T>?
I want to understand the scenarios where IEqualityComparer<T> and IEquatable<T> should be used.
The MSDN documentation for both looks very similar.
1
vote
3answers
189 views
What is the AccessTime for Dictionary<Dictionary<char,int>,List<string>> , is it still O(1)?
I wanted to implement an algorithm with Dictionary<Dictionary<char,int>, List<string>> to find the anagram words in a dictionary.
As i need to implement my custom EqualityComparer ...
6
votes
3answers
4k views
How to implement IEqualityComparer to return distinct values?
I have a L2E query that returns some data that contains duplicate objects. I need to remove those duplicate objects. Basically I should assume that if their IDs are the same then the objects are ...
0
votes
2answers
1k views
Comparing two custom Objects (using IEqualityComparer)
Firstly, I will say what I want to compare the following: My Custom Object (Item) has a List of strings taxids. I want to look if all the strings in one List occur in another list of strings (will be ...
5
votes
3answers
319 views
Questions about IEqualityComparer<T> / List<T>.Distinct()
Here is the equality comparer I just wrote because I wanted a distinct set of items from a list containing entities.
class InvoiceComparer : IEqualityComparer<Invoice>
{
public ...
1
vote
2answers
476 views
Create an iqueryable list that's distinct
I have a list of objects, GroupStudentStatus, that I need to make distinct.
I wrote the class below to do this.
The 2 attributes that are relevant are GroupStudentStatus.IsLastActionRemoved (DateTime) ...
3
votes
2answers
137 views
EqualityComparer<Uri>.Default.Equals() returning wrong result or what?
Is there an explanation for this other than being a bug in the .NET Framework? The EqualityComparer<Uri>.Default.Equals() method is saying that the following URLs are equal!
...
0
votes
2answers
219 views
How to get a value from a generic dictionary using a custom comparer for the key?
I have a generic dictionary of objects and want to use a custom comparer to update the value in the dictionary.
myObjects contains a dictionary of objects and the value is the number of times that ...
1
vote
2answers
96 views
Why is there no Overload of Distinct() accepting a Comparison Delegate (or similar)
When using the query operator Distinct() the types in the queried sequence must either provide suitable overloads of GetHashCode() and Equals() or you have to pass an implementation of ...
1
vote
1answer
187 views
How do you get WCF serialization to preserve a non-default Comparer on a generic Dictionary?
Suppose we start from scratch in Visual Studio 2010 and add a 'WCF Service Aplication'. We add this method and implementation:
// (in IService1.cs)
[OperationContract]
Dictionary<string, ...
3
votes
3answers
600 views
IEqualityComparer with Linq to XML and Distinct() is not executed in code?
It doesnt matter what I write in the Equals method. The GetHashCode is always fired, but I do not know whose GetHashCode to return?
When the GetHashCode method is called then variable x has the ...
0
votes
2answers
524 views
Why we need the IEqualityComparer,IEqualityComparer<T> interface?
the 'Equal' and 'GetHashcode' method are exist in the object class, and our type inherit the object base class.
what's the different between implement the two methods of the object directly and using ...


