作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 ASP.NET 4 Web 应用程序中使用 OpenRasta 2.0.3214.437。我正在使用以下方法在内部容器中注册自定义依赖项:
ResourceSpace.Uses.CustomDependency<IRepository, Repository>(DependencyLifetime.PerRequest);
Ignoring constructor, following dependencies didn't have a registration: IRepository
最佳答案
此问题的解决方法:
实现一个 IPipelineContributor:
public class RepositoryPipelineContributor : IPipelineContributor
{
private readonly IDependencyResolver resolver;
public RepositoryPipelineContributor(IDependencyResolver resolver)
{
this.resolver = resolver;
}
public void Initialize(IPipeline pipelineRunner)
{
pipelineRunner.Notify(CreateRepository)
.Before<KnownStages.IOperationExecution>();
}
private PipelineContinuation CreateRepository(ICommunicationContext arg)
{
resolver.AddDependencyInstance<IRepository>(new Repository(), DependencyLifetime.PerRequest);
return PipelineContinuation.Continue;
}
}
ResourceSpace.Uses.PipelineContributor<RepositoryPipelineContributor>();
关于OpenRasta DI PerRequest 生命周期问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5163606/
我在 ASP.NET 4 Web 应用程序中使用 OpenRasta 2.0.3214.437。我正在使用以下方法在内部容器中注册自定义依赖项: ResourceSpace.Uses.CustomDe
我想在请求的生命周期内动态地将一个实例注入(inject)到结构图中(即在注册表/配置之外)。 目前我正在 IHttpModule 的 HandleBeginRequest 事件中执行此操作: con
我有一个使用 Entity Framework 4.1 和 Ninject 的 MVC3 应用程序。它使用标准存储库模式,该模式在 PerRequest 的基础上接受 IUnitOfWork/DbCo
我是一名优秀的程序员,十分优秀!