Is it possible to configure Autofac to work with ASP.NET MVC and ASP.NET Web Api

Viewed 16204

Is it possible to configure Autofac to work with ASP .NET MVC and ASP .NET Web Api. I'm aware that the dependency resolvers are different. But when using the documented approaches I can only set one global resolver.

// Set the dependency resolver implementation.
GlobalConfiguration.Configuration.DependencyResolver = resolver;

Is this approach bad idea? Should I separate my solution into two projects and handle the dependency injection for each individually?

3 Answers
Related