I\'m starting to work with the ReactiveUI framework on a Silverlight project and need some help working with ReactiveCommands.
In my view model, I have something tha
I finally figured this one out. Using ReactiveCommand.Create() worked for my situation.
ReactiveCommand.Create()
MyViewModel() { AddNewRecord = ReactiveCommand.Create(x => MyCollection.Count < MaxRecords); AddNewRecord.Subscribe(x => { MyCollection.Add("foo"); } }