David Bottiau
David Bottiau
* [ ] Improve action/state design (like in the original redux devtools) * [ ] Show diff state (between previous and new state) * [ ] Save/Restore (Download/Upload) state (with...
Hydratation of the state using any kind of storage. For UWP, two scenarii: * offline mode * app suspended/terminated (reuse state when app is reopened and possibly handle server synchronization)
Keyed memoized selector: memoize each selector value based on a key Use `GroupBy` operator followed by a `DistinctUntilChanged` to memoize selector by each group/key.
Is it possible to use `ValueOrError` or even `ValueOrError`? I mean, what if you want to get a value of a POCO object (as value) and return an Exception (as...
Linked to #48 It was relatively easy to make the change but I got mad with all these generics everywhere. :) Maybe there is a better way, for now I...
It may be interesting to add a grid comparison of features available in functional vs C# in the readme file. Here is a preview (not sure of the correct version)...
Using a migration file is nice with code-first. But, is it possible to automatically map the data structure by targeting a database? I mean, all you need is a connection...