Tagged Questions
4
votes
2answers
366 views
Static members class vs. normal c-like interface
Hey there.
After reading here about the Service Locator pattern, it got me thinking wether a class with only static members really is the way to go, or if a normal c-like interace wouldn't be more ...
1
vote
3answers
68 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
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
133 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 ...