Tagged Questions
1
vote
1answer
372 views
AutoMapper classes with a Transient lifestyle in IoC
I'm using AutoMapper to map domain entities to view models in an Asp.Net MVC app. I register these mapping classes in Castle Windsor so they are available to the controller thru ctor dependency ...
1
vote
0answers
524 views
How can I improve this perWcfOperation Windsor lifestyle?
I have implemented a custom lifestyle for Windsor that will allow me to scope components to the current WCF operation. The biggest problem is that the call context initializer is executed after the ...
0
votes
1answer
169 views
Windsor Typed Factory facility, passing arguments when using singleton lifestyle
I am using Castle Windsor.
I have two component types where the implementation can be selected at runtime on a GUI. To handle this, I am resolving them by name. To handle resolving them by name, I ...
0
votes
2answers
118 views
Castle Custome Lifestyle per Resolve
I'm a newbie with Castle Windsor. Let's say I have the following classes:
public class LowLevelComponent
{
}
public class HighLevelComponent
{
readonly LowLevelComponent LowLevelComponent;
...