From time to time I've been searching for a good way to use an IoC container properly, that is:
- Using the container strictly at the composition root.
- Not using a common ServiceLocator (or similar) to avoid testability problems.
I'm now starting a personal project for learning new stuff, it's a WPF (4.5) MVVM application that uses WCF, EntityFramework among other tecnologies, frameworks, patterns and practices, and I want to try different approaches to make good use of the container, factories and related patterns.
One of the ideas that came to my mind was to make a generic factory that can be setup at the composition root not passing the container reference around. This should avoid testability problems. Let's have for example a factory:
class Factory
{
private static Dictionary<Type, Func<object>> Store = new Dictionary<Type,Func<object>>();
public static void Setup<T>(Func<T> Creation)
{
Store.Add(typeof(T), () => Creation());
}
public static T Create<T>()
{
Func<object> func = (from p in Store where p.Key == typeof(T) select p.Value).FirstOrDefault();
if (func != null) return (T)func();
return default(T);
}
}
So we configure it at the composition root with something like:
Factory.Setup(() => container.Resolve<ITest>());
Factory.Setup<ISomeWcfService>(() => new SomeWcfService());
And finally, to create a concrete type:
ITest t = Factory.Create<ITest>();
ISomeWcfService client = Factory.Create<ISomeWcfService>();
Now questions and thoughts:
Did I just reinvent the servicelocator pattern?
I know it is a bad idea to pass the container around so this solves that problem and it doesn't rely on a container, but does this look good or is it just a plain bad idea?
new, no other classes need to change. Regarding manually maintaining factories, you can useFunc<TDependency>with Autofac and some other containers. Also, check out Autofac's delegate factories, which are quite nice IMO. – default.kramer Nov 14 '12 at 16:53