New issue 19 by ilya.ind...@gmail.com: Min behaves differently
http://code.google.com/p/linqbridge/issues/detail?id=19
Please consider following two expressions and their outputs:
new string[] { "a", null}.Min()
// "a" in System.Core
// null in LinqBridge
new string[] {}.Min() // or .Max()
// null in System.Core
// exception in LinqBridge
I'd better prefer your implementation with aggregation, but the only thing
we can fix is LinqBridge, not System.Core :)
Comment #2 on issue 19 by azizatif: Min behaves differently
http://code.google.com/p/linqbridge/issues/detail?id=19
(No comment was entered for this change.)
Comment #3 on issue 19 by azizatif: Min behaves differently
Comment #4 on issue 19 by azizatif: Min behaves differently
http://code.google.com/p/linqbridge/issues/detail?id=19#c4
Fixed in r253.