I have Unity 2.0 working well within the App.xaml.cs to register and resolve within that class.
The question I have is regarding a best practice.
I have a number of User Controls and other classes that also need to resolve some of the same and new Interface <-> implementations. The problem is theres no way to access the Unity container I created in the App.xaml.cs.
I cannot use constructor or property injection to pass on the container reference.
- Just too many (its a large project)
- The user controls are added via xaml
- There are several very loosely related "modules" in the project that can share the same container config.
I would rather not re-create the container from a config file in each object that needs access to the container.
Any best practice suggestions when the same container is needed as a service in various "modules" of the same assembly?
Thanks.