My understanding of Windsor is that you must release what you explicitly resolve, but you don't have to worry about releasing (say) a transient that was instantiated during dependency injection, for example.
How does this notion fit in with Prism navigation? Prism presumably instantiates a view during region navigation (and the view in turn has its view-model DI'd via the constructor), but all this is happening "under the covers", so do I need to worry about releasing transient views/view-models when they are finished with, and if so how/where would I do this?
How does this notion fit in with Prism navigation? Prism presumably instantiates a view during region navigation (and the view in turn has its view-model DI'd via the constructor), but all this is happening "under the covers", so do I need to worry about releasing transient views/view-models when they are finished with, and if so how/where would I do this?