How do I make a direct call to ReactiveCommand.Execute() in ReactiveUI 7 correct?
问题 I'm trying to convert my project from ReactiveUI 6.5 to version 7. In the old version I called // var command = ReactiveCommand.Create...; // ... if(command.CanExecute(null)) command.Execute(null); in order to execute a command from my code behind. Now the CanExecute method is no longer available and replaced with a property of IObservable<bool> . Is the CanExecute Observable automatically called if I just make a call to Execute().Subscribe() or must I call it explicitly? For now I replaced