-
We have a few Silverlight projects using CSLA, and specifically a viewmodel base class that ultimately inherits from Csla.Xaml.ViewModelBase<T> So I'm wondering how (if at all) one would use the async/await pattern with this view model. For example, the BeginRefresh ( factoryWithCallback )...
-
Hello, I based our MVVM architecture by derivating on this base class and I'm pretty happy with the results. Down the road I encountered a case for which I would like a different behaviour in QueryCompleted. In fact, I want to get a hold on the model before it it assigned to the Model property. Here's...