I am currently getting started with the .NET Prism framework to develop a WPF application. One thing that I'm unable to determine is the best way to achieve asynchronous calls to a WCF service, or a database? The reason is, I don't want a WCF/DB call to block the UI thread, which causes the UI to just freeze until the operation is done.
From my understanding, I should be following the architecture:
View (WPF) <=> View Model <=> Application Services <=> DB/WCF
Do I implement the asynchronous behaviour in the view model using something like the AsyncDelegateCommand? If I do this, then I am unable to maintain any state in the application services, since setting any state needs to be done in the UI thread (unless there's a way around this).
So the other option is to provide async methods with callbacks in the application services and have the application services spawn threads/tasks for the asynchronous operations.
I briefly looked into the Prism StockTrader reference implementation, and they don't seem to do anything asynchronously. I feel that this should be a very common problem, and there must be some best practices out there to deal with this.