In an MMVM application, how should exceptions be handled and bubbled?
If I get an exception in my model, during an Async callback, and throw an exception, this does not get bubbled to the ViewModel. I suspect that this is because the callback is not running on the UI thread.
What's the best practice for this?
Mark