When navigating from a list page to a details page, there are two high level ways of passing the selection data between the pages: sharing a view model instance and passing an identifier in the querystring of the navigation Uri.

Which should I be using? Are there any issues with using one approach over the other (access to current Uri from the view model, timing of navigation events, etc)?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

Personally I would recommend passing an identifier as part of the navigation URI querystring. These URIs are restored to form the back-stack when your application re-enabled after tombstoning.

When your application is restored after being tombstoned, you re-create your applications view model from the application state, then use the URI querystring to 'marry' your newly created view with its required DataContext.

See the worked example here:

http://www.scottlogic.co.uk/blog/colin/2011/05/a-simple-windows-phone-7-mvvm-tombstoning-example/

link|improve this answer
How do you access the Uri from the ViewModel? – Richard Szalay Jun 9 '11 at 8:43
Read the article referenced above! – ColinE Jun 9 '11 at 8:43
Ah, by breaking MVVM. – Richard Szalay Jun 9 '11 at 8:44
Breaking MVVM? The two main tenants of MVVM are (1) developer-designer workflow and (2) a unit testable view model. How does this approach break MVVM? – ColinE Jun 9 '11 at 8:47
Because you can't test the page's interaction with the view model – Richard Szalay Jun 9 '11 at 10:35
show 1 more comment
feedback

the two approches are quite well.

the real difference is in the tombstone process.

when you go back to your application, the id of your object will be parsed :

  • in the querystring. (native)
  • with your specific isolated storage management.

if you choose the shared viewmodel, you will have to save the id when you navigate to.

a mix of the two seems to be the best : you navigate with queryString, and use a sharedViewModel, so when you navigate to a new page, you got the id from queryString and get the data from the sharedViewModel with that id !

you can manage your SharedViewModel to save datas in the IsolatedStorage to recover web loaded datas when tombstonned

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.