Vsevolod Pilipenko

Results 13 comments of Vsevolod Pilipenko

Hello, @kronic! This is in plans of release 2.0 #18 Unfortunately, I cannot say anything about when I can do this.

Hi, @kronic. There are a lot time passed, but I've completed this feature :) You can test it on [2.0.0-pre](https://www.nuget.org/packages/ReactiveValidation.Wpf/2.0.0-pre) version. How use it describted [here](https://github.com/Karnah/ReactiveValidation/wiki/Async-validation) ``` c# builder.RuleFor(vm =>...

Hello, @WizMe-M! This is the nice feature! I'll think about how it's better to implement. Thanks for idea.

Hello, @WizMe-M I finally did it! I hope it flexible enough to supports most of needs. It allows: - Set up throttle for each rule individually (`Throttle`) and for all...

Hello, @WizMe-M! I've published 2.0.3-pre. I will be appreciated if you will have chance to look. Thanks!

I've release 2.0.3 version (without `pre`). Documentation can be found [here](https://github.com/Karnah/ReactiveValidation/wiki/Delay-before-validation-(property-throttling)). If you will have some problems or questions, please create new issue or reopen this.

I found the problem: 1. `PrismContainerExtension` awlays creates the new `Instance` if `Register` was called before. 2. If you use `RegisterSingleton` in one IServiceCollection and then create two `IServiceProvider` based...

@hippieZhou, it seems to me, that it doesn't work at all. Probably, it's better to use another container.

> Did you find a solution? We use another container. We only use `IServiceCollectionExtensions` from this package which allows using shared DI code (extensions written for `this IContainerRegistry containerRegistry`).

Hello, @blahetal. ``` C# .WithMessage(vm =>$"Error{vm.SomeProperty}") ``` As I understand, `SomeProperty` is also `INotifyPropertyChanged` property, so each time it's changed, the error message should also change? Hmm, I'll try to...