Tagged Questions
6
votes
3answers
80 views
Domain Driven Design: access a configured value from an Entity without using a Service Locator
I have a User entity which has a HasCompletedSecurity property which indicates whether that particular User has answered the number of security questions required by the system. The number of security ...
4
votes
4answers
263 views
What if Dependency Injection is not possible?
After much kicking and screaming, I'm starting to accept DI despite how much cleaner SL may seem as dependencies grow.
However, IMO there's still a significant show-stopper with regards to DI:
DI is ...
3
votes
1answer
853 views
.NET MVC3 Service Locator / Dependency Resolver Question With Ninject
I have what I'd consider a standard .NET MVC3 Repository pattern project that I've been playing/learning with. It's pretty standard structure.
Repository project (with the below mentioned Caching ...
3
votes
3answers
769 views
Is it bad to use servicelocation instead of constructor injection to avoid writing loads of factory classes
Right now we use DI/IOC and when we need to pass extra parameters to a constructor we use a factory class e.g.
public class EmailSender
{
internal EmailSender(string toEmail, string ...
3
votes
1answer
1k views
Singleton Vs ServiceLocator
What are the advantages and disadvantages of using a Service Locator versus a singleton? I've read that singletons are bad but I'm wondering if s Service Locator would be generally a better way of ...
2
votes
1answer
205 views
How to declare the Unity InjectionFactory in XML configuration
I'm in the process of moving our Unity configuration to the web.config file. I'm stuck on how to migrate the following code config to the xml format:
var container = new UnityContainer();
...
2
votes
3answers
221 views
Relevant tests for The Service Locator Pattern In C#
I've used this Service Locator Pattern in my Application and implemented as a Singleton:
Service Locator Pattern
And now I want test it .So far I've written a test verifying that my class is a ...
1
vote
3answers
69 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
178 views
Dealing with how MongoDB stores DateTime when used with Service Locator Pattern
My colleague and I are at an impasse in a debate and other's input would be greatly appreciated.
We utilize the Service Locator Pattern and a common interface to abstract all of our data access so we ...
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 ...
1
vote
1answer
710 views
Scope of View Models when using Service Locator Pattern in WPF app
When using a Service Locator class to serve up ViewModels for your WPF pages to bind to. Should the ViewModels be Singleton scoped or Factory scoped? Is one generally a better idea for WPF ...
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 ...