使用 Unity MVC5 进行依赖注入 - InjectionFactory 已弃用

Dependency Injection with Unity MVC5 - InjectionFactory Deprecated

在最新版本的 Unity (MVC5) 中,InjectionFactory 已被弃用。以下是您在尝试使用它时将收到的过时警告。

[Obsolete("InjectionFactory has been deprecated and will be removed in next release. Please use IUnityContainer.RegisterFactory(...) method instead.", false)]

不幸的是,我对此 API 缺乏了解,无法进行适当的修复。

正如您从下面的代码中看到的,我正在尝试使用利用 InjectionFactory 的旧解决方案注册 IAuthenticationManager。有谁知道新解决方案的效果如何?

public static void RegisterComponents()
{
    var container = new UnityContainer();

    container.RegisterType<IAuthenticationManager>(new InjectionFactory(c => HttpContext.Current.GetOwinContext().Authentication));

    DependencyResolver.SetResolver(new UnityDependencyResolver(container));
}

下面我还包含了一个引用此对象的控制器。

public class AccountController : Controller
{
    private AdAuthenticationService _signInService;

    public AccountController() { }

    public AccountController(IAuthenticationManager signInManager)
    {
        this._signInService = new AdAuthenticationService(signInManager);
    }

    etc...

如果大家有任何其他问题,请告诉我,感谢您的帮助。

我觉得有点傻。我花时间实际阅读警告,答案就在那里。

一行替换:

旧:

container.RegisterType<IAuthenticationManager>(new InjectionFactory(c => HttpContext.Current.GetOwinContext().Authentication));

新:

container.RegisterFactory<IAuthenticationManager>(c => HttpContext.Current.GetOwinContext().Authentication);