New issue 24 by ilya.ind...@gmail.com: Except and Intersect fails when any
of argument sequences contain null elements
http://code.google.com/p/linqbridge/issues/detail?id=24
The following test will fail:
var first = Read("abc", null);
var second = Read("bcd", null);
first.Except(second).AssertEquals("abc");
The reason is the same as in the issue #21: Intersect and Except operations
rely on generic Dictionary as a substitute for the Set, but the Dictionary
is not suitable for null key values.
Comment #1 on issue 24 by azizatif: Except and Intersect fails when any of
argument sequences contain null elements
http://code.google.com/p/linqbridge/issues/detail?id=24
(No comment was entered for this change.)
Comment #2 on issue 24 by azizatif: Except and Intersect fails when any of
argument sequences contain null elements
http://code.google.com/p/linqbridge/issues/detail?id=24
This issue was closed by revision f8234998bc9c.