Async OnXXXXCreated

Wouldn´t it be nice to have the OnXXXXCreated async? If the parent method is async the child method chouldn´t have a problem beeing that aswell right? Or is it any reason why the OnXXXXCreated is not async?

This goes for all On......... Calls.

I want to make an async call inside my OnBudgetCreated. How would i proced to do this at this moment?

I just relized the Context property does not need to be awaited and that fixed my problem in this case. The call i want to make inside my On Call is Context function

Async partial methods are not supported by the language I am afraid (as they return a value).

1 Like