Currently, I'm trying to use the WindsorContainer as a mean to get rid of Singletons in my program. After some testing, I realised, that I need a way to keep the WindsorContainer throughout my program, but how? The documentation isn't that good. Could anybody give me an example of a way to use Castle Windsor to create a useable Container throughout my whole program.
|
1
|
|||
|
|
|
Create a static class that holds the container instance:
In your main method (or global.asax if it's an asp.net app) you configure the container and initialize the IoC (Inversion of Control):
To resolve an instance you simply use the IoC:
|
||||||
|
|
|
Small remark on Dala's answer. I guess the public T Resolve<T>() method should also be static? |
||||||
|
