Graham

Results 105 comments of Graham

Sorry I didn't spot this when you opened it. Thanks for whittling it down to the core of the issue. Should be a pretty easy fix it's just a case...

I later found that the requested "expected output" throws on nulls when using EFCore anyway (I tested against sqlite). Since this sort of behaviour is provider specific, I've decided to...

One idea for implementing exactly the resume next logic: ```csharp static void Main(string[] args) { Wrap(() => { Console.WriteLine("First line"); }); int result = default; Wrap(() => { result =...

I think this is slightly improved in the recent release. It's still ugly but I think now runnable. I've added a test case for it

Thanks for the great example. I think the solution is sensible, we just need to try to minimise the number of situations it happens in. E. G. Only when the...