StructureMap
StructureMap
Index Part 0 – Introduction Part 1 – The Basics Part 2 – Instance Lifecycles Part 3 – Constructing the Concrete Type Part 4 - Scanning So far I’ve shown enough to build a working DI system. By registering concrete types for your abstractions you can fully configure the container. However it’s unlikely to have escaped your notice that doing...
Index Part 0 – Introduction Part 1 – The Basics Part 2 – Instance Lifecycles Part 3 – Constructing the Concrete Type Part 4 - Scanning Now that we can control the lifecycle of an instance it’s worth considering how those instances are constructed. In the code shown so far the parameter-less Use method is responsible for specifying the concrete...
Index Part 0 – Introduction Part 1 – The Basics Part 2 – Instance Lifecycles Part 3 – Constructing the Concrete Type Part 4 - Scanning Let’s start at the beginning which is allegedly a very good place to start. Before StructureMap can construct any kind of concrete type for you it must be told what it should construct. StructureMap...