13

我正在使用自托管方法创建一个具有 ASP.NET Web API 接口的应用程序。我想使用类似于InRequestScope()MVC3 提供的范围。当我在 IIS 上托管 Web API 应用程序时,Ninject.Extension.WebAPI 似乎支持它。但是当我自己托管 WebAPI 时,我会在创建绑定时得到一个新实例InRequestScope()。当我自己托管 Web API 时,有什么方法可以使用这个范围?

4

1 回答 1

11

您可以使用 NamedScope 扩展来定义控制器定义范围并将该范围用于请求范围内的所有内容。最好使用此定义的约定:

const string ControllerScope = "ControllerScope"; 
kernel.Bind(x => x.FromThisAssembly()
                  .SelectAllClasses().InheritedFrom<ApiController>()
                  .BindToSelf()
                  .Configure(b => b.DefinesNamedScope(ControllerScope)));

kernel.Bind<IMyComponent>().To<MyComponent>().InNamedScope(ControllerScope);

我建议INotifyWhenDisposed为控制器实现,以便请求范围内的对象在请求后立即释放。例如,通过从以下类派生而不是ApiController

public abstract class NinjectApiController : ApiController, INotifyWhenDisposed
{
    protected override void Dispose(bool disposing)
    {
        base.Dispose(disposing);
        this.IsDisposed = true;
        this.Disposed(this, EventArgs.Empty);
    }

    public bool IsDisposed
    {
        get;
        private set;
    }

    public event EventHandler Disposed;
}

我尝试在接下来的几周内为 WebAPI 自托管提供扩展。

编辑:

自托管支持现在由 Ninject.Web.WebApi.Selfhosting https://nuget.org/packages/Ninject.Web.WebApi.Selfhost/3.0.2-unstable-0提供

示例:https ://github.com/ninject/Ninject.Web.WebApi/tree/master/src/Ninject.Web.WebApi.Selfhost

于 2012-04-15T00:43:21.180 回答