Jason Bock
Jason Bock
You can re-open them if you like.
I would personally want to see the C# team work on other features, like making the type system more expressive and extensible (concepts or roles or whatever it ends up...
Yes, this feature would be less complicated than concepts/roles/shapes/etc. It would still require work, and FWIW there are ways to already achieves the end result. They're not as elegant as...
Thankfully someone else noticed this. I haven't been to sharplab.io in a while, and when I tried to use it today, I wondered if my keyboard was possessed :). Whatever...
> This also seems to happen when typing ``, or `;`, without me seeing autocomplete being involved. Yeah something seems very borked on the site :(
What you're getting here is an analyzer error - specifically, this one: https://github.com/MarimerLLC/csla/blob/master/docs/analyzers/CSLA0018-IsCompleteCalledInAsynchronousBusinessRuleAnalyzer.md. @rockfordlhotka and I talked about this, and my understanding is that `Complete()` should not be called in...
@brinawebb is it possible that the rule is firing but the object's `IsBusy` is true in your test? As a side note, doing a spin on `IsBusy` feels really dirty...
@brinawebb I'm guessing @rockfordlhotka has that `Task.Delay()` in his example to simulate asynchronous work. You're right, if you take that out, you get a warning, so the example needs **something**...
@brinawebb is there any way you can post an example to a GitHub repo or something similar so we can see the full example?
@rockfordlhotka so that makes me wonder, would it be possible to set some configuration on CSLA to say "WaitOnBusy" (or a better name than that) that tells the `DataPortal` not...