There isn't a builtin to do such an operation efficiently. It's not very often that people would need to get items that satisfy a condition and one more that doesn't. You'd have to write it yourself.
However you can build this up using existing methods, it just won't be as efficient since you'd need to keep the state somehow only complicating your code. I wouldn't condone this sort of query as it goes against the philosophy of LINQ and would write it myself. But since you asked:
var list = Enumerable.Range(0, 10);
Func<int, bool> condition = i => i != 5;
int needed = 1;
var query = list.Where(item => condition(item)
? needed > 0
: needed-- > 0)
.ToList(); // this might cause problems
if (needed != 0)
throw new InvalidOperationException("Sequence is not properly terminated");
However this has its own problems which can't really be resolved nicely. The right way to deal with this is to code this all by hand (without LINQ). This will give you the exact same behavior.
public static IEnumerable<TSource> TakeWhileSingleTerminated<TSource>(
this IEnumerable<TSource> source,
Func<TSource, bool> predicate)
{
var hasTerminator = false;
var terminator = default(TSource);
foreach (var item in source)
{
if (!hasFailed)
{
if (predicate(item))
yield return item;
else
{
hasTerminator = true;
terminator = item;
}
}
else if (!predicate(item))
throw new InvalidOperationException("Sequence contains more than one terminator");
}
if (!hasTerminator)
throw new InvalidOperationException("Sequence is not terminated");
yield return terminator;
}
After much thinking about this, I would say it would be difficult to get the most efficient implementation of the original query since it has conflicting requirements. You're mixing TakeWhile() which terminates early with Single() which cannot. It would be possible to replicate the end result (as we all have attempted here) but the behavior cannot without making nontrivial changes to the code. If the goal was to take only the first failing item, then this would be totally possible and replicable, however since it isn't, you'll just have to deal with the problems that this query has.
p.s., I think it's evident how non-trivial this is to do just by how many edits I have made on this answer alone. Hopefully this is my last edit.
Zip()for a look-ahead but that still would traverse the enumeration twice - operator is the way to go. – BrokenGlass Mar 29 '11 at 22:12