Bruce Zlata

Results 13 comments of Bruce Zlata

@MOwaisfarooq you can check the above link, for example, throw exception once there is any error in any of your steps (Tasks), then, compensate entire saga transaction (UndoEverything). ``` builder...

Hi Heitor, In `App.xmal.cs`, create Microsoft.Extensions.Hosting ``` private static readonly IHost _host = Host.CreateDefaultBuilder() .ConfigureAppConfiguration(c => { c.SetBasePath(AppContext.BaseDirectory) .AddJsonFile(LoggingConfigFileSystem, optional: false, reloadOnChange: true); }) .ConfigureServices( (_, services) => { //...

Also, you need to DI your pages, view models etc. in `ConfigureServices`. So you can use it in page. ``` public partial class TestControlPage : Page { private readonly IWorkflowHost...