Peter Morris
Peter Morris
Please keep me updated, I am very interested.
Are you talking about the new "static server side rendering"? If so, that's a stateless approach. The state of the page is determined on every render, so you don't need...
Isn't asking how to get a state library to work on a stateless architecture like asking where to put the petrol in a solar panel? They are different things.
Is there a solution or workaround for this?
Nearly 2 years ago. It doesn't look like it will be fixed any time soon, if at all.
It would still be able to auto-discovery what you need registered.
@ashern The discovery would be done with a code-generator, the creation would be done on demand. So even after dispatching Action1, the Effects for Action2 would not yet be created.
@massimotomasi The code you wrote should dispatch the actions sequentially. Do you have a case where this is not happening? Is there a repro you can share, perhaps a unit...
All reducers should have finished for Action1 before Action2 is processed. Note that async effects are executed in the background and night not have completed before Action2 is dispatched. If...
If the user is migrating an existing app with lots of Microsoft form components, then this might be worth trying 1. Add this to _Imports.razor `@using MSForms = Microsoft.AspNetCore.Components.Forms` 2....