I have this binding:
this.OneWayBind(this.ViewModel, x => x, x => x.Property);
where I want to bind the ViewModel directly to the Property property on the view.
This binding never happens when this.ViewModel is still null when the binding is created. I'm not entirely sure if this is a bug or intended and still looking how it can be fixed.