vote up 0 vote down star

Hi folks,

I'm playing around with some Dependency Injection (StructureMap) with my ASP.NET MVC application. Works great.

Becuase StructureMap is using DI via the most gready constructor (I hope I got that concept named right), I'm under the impression that it creates an instance of an object for each argument, in the most gready constructor.

So, is it possible to tell a DI framework (in this case, it's StructureMap but i'm curious if it can do it for any other .NET DI Framework) to NOT create the instance when the constructor is called, but to delay that object's construction until required?

Sorta like some lazy-object construction or something...

flag

77% accept rate
I'd be surprised if you can't. I found how to disable the default injection behaviour which might be useful if you cant find the 'by design' method: structuremap.sourceforge.net/FAQ.htm#FAQ11 – cottsak Oct 18 at 9:12

1 Answer

vote up 0 vote down check

All di frameworks that support singleton->session/request scoped mappings typically instantiate a proxy object instead of the "real" object when a singleton object needs to access a session scoped object. Construction of the "real" instance is normally deferred to the first time a method on the proxy is invoked.

I believe castle windsor supports this mechanism.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.