I have an error log from a user with a stack trace that I don't fully understand. Here's how it looks
Stack Trace:
at ...Presenters.Forms.PresenterHome.<GetCounts>b__f(IActivityItem activityItem)
at System.Linq.Enumerable.Count[TSource](IEnumerable`1 source, Func`2 predicate)
at ...Presenters.Forms.PresenterHome.GetCounts(Int32& completeCount, Int32& incompleteCount)
at ...Presenters.Forms.PresenterHome.UpdateSummaryPanel()
.....
(I have removed the start of some namespaces to protect client's identity)
The part I don't understand is <GetCounts>b__f(...) and why it is called after Enumerable.Count[...](...). I assume it has something to do with the Count predicate but I can't quite decipher this.
If it helps the exception is an InvalidCastException. Here is some of the code involved (slightly modified to protect identity).
void UpdateSummaryPanel()
{
int completeCount;
int incompleteCount;
GetCounts(out completeCount, out incompleteCount);
...
}
private void GetCounts(
out int completeCount,
out int incompleteCount)
{
incompleteCount = _applicationContext.ActivityItems.Count(
activityItem => activityItem.ActivityType == ActivityTypes.Foo
&& ((FooActivity) activityItem).Status != CaptureStatus.Bar);
// similar code for other count
}
For what it's worth I'm pretty sure I know what's causing the error (ie where the bad cast is) but what I'm really curious about is that <GetCounts>b__f(...) member in the stack trace.
yield-iterators, and C#5'sasync-methods. In your case it's clearly the lambda. – CodeInChaos Feb 8 at 20:37