I have a simple lambda expression that works great as a UNIT test, and also works great when copying code to the main method of my application. However, when I run the same piece of code in the callback method (via JMS courier), I get the above error. Has anyone come across this?
Example code error:
Expression<Func<JupiterDividend, bool>> expr = v => true; expr.Compile();
Grahame rogers
source share