I\'m using Unity successfully for all regular constructor injection such as repositories etc., but I can\'t get it working with the ASP.NET Identity classes. The setup is th
You need to register Unity under the HttpConfiguration.DependencyResolver property. This allows WebApi to know that it needs to use Unity rather than reflection to instanciate your controllers.
The easiest way to do this is with the above nuget package.