Transition from one route to another with a different model in Emberjs
I have a search page where we are getting different types of search results. In the list of search results I would like to use {{#linkTo 'someResources.someResource' result}}{{result.Name}}{{/linkTo}} And on the route someResources.someResource I want to use a totally different model than on the search page. How do I do that? When I click on the link for the linkTo it doesn't load the model again, instead it tries to use the model named result here. So what I would like to do is to reload the model when I navigate to someResources.someResource based on the values in result . The I do have a