Tagged Questions
6
votes
1answer
532 views
How to combine designable components with dependency injection
When creating a designable .NET component, you are required to provide a default constructor. From the IComponent documentation:
To be a component, a class must
implement the IComponent ...
4
votes
1answer
286 views
Unity 'GetAllInstances' not returning anything
I'm using unity to manage my services on my app server but for some reason I can't get the method 'GetAllInstances' to work. The weird thing is that 'GetInstance' for the same type seems to work fine!
...
3
votes
2answers
363 views
Is the StaticFactory<T> in codecampserver a well known pattern?
CodeCampServer source code contains a generic StaticFactory.
I'm surmising that this is a key piece of the mechanism for how the framework plays well with Dependency Injection.
Subclasses of which ...
1
vote
3answers
71 views
Service locator pattern and DDD
I have a framework with a DDD data layer which uses the service locator pattern. However, currently I use a global static ServiceLocator class which stores all the references. I would like to refactor ...
1
vote
1answer
262 views
Service locator free architecture with Ninject WCF Extenstion
I finally got some understanding of how Ninject handles DI, but have faced the following problem:
Let's consider we have a class that takes two WCF ServiceHost objects as a constructor parameters:
...
1
vote
1answer
150 views
Are Consumers of ServiceLocator supposed to call ServiceLocator.Current?
I'm trying to refactor my code to use the Common Service Locator. I have a Shared Library that is used by some other components.
What I don't understand is: Are these components supposed to call ...
1
vote
1answer
571 views
Service locator for generics
I have say a dozen types T which inherit from EntityObject and IDataObject.
I have generic the following interface
IDataManager<T> where T : EntityObject, IDataObject ...
I have also base ...
0
votes
2answers
134 views
Validation without ServiceLocator
I am getting back again and again to it thinking about the best way to perform validation on POCO objects that need access to some context (ISession in NH, IRepository for example).
The only option I ...