Search Results

2
votes
4answers
288 views

What is the overhead cost associated with IoC containers like StructureMap?

After attending a recent Alt.NET group on IoC I got to thinking about the tools available and how they might work. StructureMap in particular uses both attributes and bootstrapper concepts to map …
1
vote
4answers
834 views

NInject vs. StructureMap etc…

Does anyone have any good suggestions around IoC/DI frameworks? I'm looking into them a bit, but since IoC is new to me I'm looking for pointers on what to check out first. …
3
votes
2answers
346 views

NInject: Where do you keep your reference to the Kernel?

I'm using NInject on a new web application and there are two things that are unclear to me: Don't I need to keep a reference to the Kernel around (Session/App variable) to insure t …
1
vote
1answer
137 views

Implementing OnePerSessionBehavior in NInject…

I'd like to create a OnePerSessionBehavior for NInject (v1.0) and I've mostly got it working. The only issue that remains is how to pass in fresh arguments using .WithArguments() as each new sessi …
0
votes
1answer
146 views

How do I use InstanceScope.HttpSession in StructureMap?

I'm trying to use StructureMap's InstanceScope.HttpSession feature and I'm running into problems. I have the following method I'm using for testing: public static class StructureMa …