I have two IObservable<bool>
( canEdit1 and canEdit2 ), how can I unite them?
Here is a sample of my code:
var canEdit1 = InerrProperty1.WhenAnyValue(x => x.Property1, x => x,
(prop1, x) => prop1 != null && x != null);
var canEdit2 = InerrProperty2.WhenAnyValue(x=> x.Property1, x=>x.Property2,
(prop1,prop2) => !string.IsNullOrEmpty(prop1) && !string.IsNullOrEmpty(prop2));