首页 > 解决方案 > 使用 Unity MVC5 进行依赖注入 - 不推荐使用 InjectionFactory

问题描述

在最新版本的 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...

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

标签: asp.net-mvcdependency-injectionowin

解决方案


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

一行替换:

老的:

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

新的:

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

推荐阅读