James Faix

Results 13 comments of James Faix

It seems like if the SA password isn't set or is set to something invalid, this should fail the container creation. Is this not a bug, even though there is...

What needs to be updated for this? Documentation? Code? Resource strings? All of these?

I like the idea of a += ligature, and if that exists, then -= should probably exist for symmetry. But then should all the other assignment operations available in different...

@MadcapJake I see your point. I think += and -= are more valuable than *= and /=. @aaaxx I think changing *= to look like x= would be too confusing....

I agree that a standard UnionAll is redundant with Concat. As for ExceptAll and IntersectAll being expressible with the help of Join, this is true, but as you mentioned, it...

What about `DoYield`? `var avg = new[] {1, 2, 3}.DoYield(x => Console.WriteLine(x)).Average()`

If you put Contains() inside the predicate of Where(), it will get called once per iteration, which should put execution time around O(n^2). An IntersectBy operator can be optimized to...

You are correct on both counts. But more to the point, we're now looking at a combination of about 5 function calls that require the client to worry about implementation...

``` public static IEnumerable IntersectBy( this IEnumerable first, IEnumerable second, Func keySelector, IEqualityComparer keyComparer = null) { if (first == null) throw new ArgumentNullException("first"); if (second== null) throw new ArgumentNullException("second");...