3

我在使用MembershipReboot新的 ASP MVC5 模板和Autofac. 我使用默认的 MVC5 模板来设置站点,然后尝试连接MembershipReboot框架以替代模板附带的 ASP Identity 框架。

我遇到的这个问题是试图IOwinContextAutofac容器中解决。这是我在 Startup 课程中的接线(简化为基础知识)。这是MembershipReboot Owin应用程序示例中使用的接线(除了他使用 Nancy)。

public partial class Startup
 {
    public void Configuration(IAppBuilder app)
    {
        var builder = new ContainerBuilder();
        builder.RegisterControllers(Assembly.GetExecutingAssembly());

        builder.Register(c => new DefaultUserAccountRepository())
            .As<IUserAccountRepository>()
            .As<IUserAccountQuery>()
            .InstancePerLifetimeScope();

        builder.RegisterType<UserAccountService>()
            .AsSelf()
            .InstancePerLifetimeScope();

        builder.Register(ctx =>
        {
            **var owin = ctx.Resolve<IOwinContext>();** //fails here
            return new OwinAuthenticationService(
                MembershipRebootOwinConstants.AuthenticationType,
                ctx.Resolve<UserAccountService>(),
                owin.Environment);
        })
            .As<AuthenticationService>()
            .InstancePerLifetimeScope();

        var container = builder.Build();
        DependencyResolver.SetResolver(new AutofacDependencyResolver(container));

        ConfigureAuth(app);
        app.Use(async (ctx, next) =>
        {
            using (var scope = container.BeginLifetimeScope(b =>
            {
                b.RegisterInstance(ctx).As<IOwinContext>();
            }))
            {
                ctx.Environment.SetUserAccountService(() => scope.Resolve<UserAccountService>());
                ctx.Environment.SetAuthenticationService(() => scope.Resolve<AuthenticationService>());
                await next();
            }
        });
    }

这是我的控制器,它具有在控制器构造函数中指定的依赖项。

public class HomeController : Controller
{
    private readonly AuthenticationService service;

    public HomeController(AuthenticationService service)
    {
        this.service = service;
    }

    public ActionResult Index()
    {
        return View();
    }

    public ActionResult About()
    {
        ViewBag.Message = "Your application description page.";

        return View();
    }

    public ActionResult Contact()
    {
        ViewBag.Message = "Your contact page.";

        return View();
    }
}

似乎我需要将Autofac容器包装在一个容器中AutofacDependencyResolver,以便 MVC 框架使用容器来解析组件。这是与Nancy Owin示例和我在 MVC5 中使用的唯一主要区别。

当我这样做时,看起来(从我的跟踪中)好像在没有首先通过OWIN middleware堆栈的情况下解决了依赖关系,因此IOwinContext从未注册过。

我在这里做错了什么?

更新:

Brock,当我将配置迁移到我的项目时,您的新示例运行良好。仅出于我的理解,您的新示例中的这一行似乎将当前的 OwinContext 注册到容器中,而这正是以前所缺少的。

builder.Register(ctx=>HttpContext.Current.GetOwinContext()).As<IOwinContext>();

就是它

4

1 回答 1

5

有一个较新的示例使用 AutoFac for MVC 进行 DI:

https://github.com/brockallen/BrockAllen.MembershipReboot/blob/master/samples/SingleTenantOwinSystemWeb/SingleTenantOwinSystemWeb/Startup.cs

看看这是否有帮助。

如果您不想使用HttpContext.Current,可以执行以下操作:

app.Use(async (ctx, next) =>
{
    // this creates a per-request, disposable scope
    using (var scope = container.BeginLifetimeScope(b =>
    {
        // this makes owin context resolvable in the scope
        b.RegisterInstance(ctx).As<IOwinContext>();
    }))
    {
        // this makes scope available for downstream frameworks
        ctx.Set<ILifetimeScope>("idsrv:AutofacScope", scope);
        await next();
    }
}); 

这就是我们在内部为我们的一些应用程序所做的事情。您需要连接您的 Web API 服务解析器以查找“idsrv:AutofacScope”。Tugberk 对此有一个帖子:

http://www.tugberkugurlu.com/archive/owin-dependencies--an-ioc-container-adapter-into-owin-pipeline

于 2014-02-11T22:13:46.723 回答