show/hide this revision's text 2 added 9 characters in body

I have found the issue that I was asking about, and it was my fault. I had coded a stack overflow: I refactored some code into an extension method, renamed it to match the Linq extension method that it called, and so it just called it self recursively.

The lessons to learn from this:
1: "select" isn't broken. I was too quick to blame the framework, due to its bad reputation.

2: But it did have a pathologically general and entirely misleading error message.

In cases where the error message is that bad, a good debugging technique is to try to pin down what does and what doesn't cause the error. In my case, the breakthrough came as soon as I noticed that it wasn't "the test run" that was failing, it was only runs containing Sql database tests - domain object and mock repository test could run just fine, so there had to be something about the code that it was running. And that the debugger would step into the tests. I had assumed from the calamitous errors that it wasn't even getting that far.

show/hide this revision's text 1

I have found the issue that I was asking about, and it was my fault. I had coded a stack overflow: I refactored some code into an extension method, renamed it to match the Linq extension method that it called, and so it just called it self recursively.

The lessons to learn from this:
1: "select" isn't broken. I was too quick to blame the framework, due to its bad reputation.

2: But it did have a pathologically general and misleading error message.

In cases where the error message is that bad, a good debugging technique is to try to pin down what does and what doesn't cause the error. In my case, the breakthrough came as soon as I noticed that it wasn't "the test run" that was failing, it was only runs containing Sql database tests - domain object and mock repository test could run just fine, so there had to be something about the code that it was running. And that the debugger would step into the tests. I had assumed from the calamitous errors that it wasn't even getting that far.