Reputation: 803
I am new to Dependency Injection. Does anyone have an idea about the way StructureMap works? I've been searching for a documentation for that but all I found was the API documentation (the list of Namespaces and methods), not what I want. I need an "howTo". Can anyone assist?
Upvotes: 0
Views: 1168
Reputation: 4372
The place I learned it from is http://docs.structuremap.net/. If you have no prior experience with StructureMap, be sure to read the sections A Gentle Quickstart and Auto-Wiring, and you should have the basics you need to start using it.
Another nice overview I found is this one. Incidentally, it uses the For<...>.Use(...)
syntax which I prefer.
Also, LosTechies has a series on StructureMap, e.g. see StructureMap: Medium-level usage scenario's.
Upvotes: 1