My goal: To inject an IFilterProvider in the case where one is provided by DI, but to fallback to the global FilterProviders.Providers.GetFilters() method by default.
There are a lot of resources on the Internet (including an "official" Microsoft one) that demonstrate how to inject the IFilterProvider interface into a class. However, all of them use the service locator anti-pattern (per Mark Seeman) to do so. Here is a list of the ones I found:
- http://msdn.microsoft.com/en-us/vs2010trainingcourse_aspnetmvcdependencyinjection_topic4.aspx
- http://merbla.blogspot.com/2011/02/ifilterprovider-using-autofac-for-mvc-3.html
- http://thecodinghumanist.com/blog/archives/2011/1/27/structuremap-action-filters-and-dependency-injection-in-asp-net-mvc-3
- ASP.NET MVC IFilterProvider and separation of concerns
So what's wrong with these methods? They all inject a DI container into the target class instead of the other way around. If you see something in your class like container.Resolve(), then you are not yielding control of the lifetime of objects to the DI container, which is what inversion of control is really about.
In addition, the problem with trying to create a fallback to the global FilterProviders.Providers instance is that although it has the same signature as the IFilterProvider interface, it does not actually implement this interface. So how can the global static member be injected as a logical default and still allow the use of DI to override it?