I have a class (MyService) that has a static property (MyService.Context) which represents a current context (which is specific to currently logged in user, so it changes).
What i’m trying to achieve i
ObjectFactory.Initialize(x =>
{
x.For<IMyService>().Use<MyInstance>(c => c.Use(MyService.Context));
});
I.e. so that for every ObjectFactory.GetInstance<IMyService>() i get a reference to MyService.Context
Is that doable?
UPDATE
I can’t use a singleton pattern since MyService.Context changes depending on the user making a request (via HttpContext).
In the pseudo-code above lambda parameter c represents a SM context, so that i can return a custom result for each request. I’m aware of SM’s Intercept() but it’s fired after the object is constructed – not instead.
If you can work with a property there is the possibility to add a
OnCreationmethod. The Action provided is executed against the instance just after creation:Or you can use lazy initialization and provide a
Functo theUsemethod which is executed whenever a new instance is needed. This should execute in the right context:I hope one of this methods works for you.