IStore.Features
) that contains mapping between state (type/type name but not feature name) and feature? I need it because in the lib, I have a black/whitelist that I would prefereably like to initialize it with nameof(StateClassName)
instead of magicString_FeatureName
.
GetInitialState
is executed before even the middleware is instantiated (not mentioning executing the middleware's InitializeAsync
). Actually, my blazor server page was already rendered and viewed on the browser, before debugger stopped in the first line of InitializeAsync
. So I do not think this is going to work...
Feature
class to inject my persisted store and initalize the state either to value exisiting in the store or to the default. For the time being it seems to be working as expected and I do not get the initial values shown in the server side. Thanks for your help!