I tryed to use distinct with equalityComparer without any luck.
When I saw the jsinq.js, I found an error on line 105, in the "EqualityComparer.fromFunction".
For some reason, the code is "comparer.compare = func;" where I think it must be "comparer.equals = func;"
With this change, the comparer do work.
Comments:
When I saw the jsinq.js, I found an error on line 105, in the "EqualityComparer.fromFunction".
For some reason, the code is "comparer.compare = func;" where I think it must be "comparer.equals = func;"
With this change, the comparer do work.
Comments:
Solved.