2

我将 MvcContrib 库与 Castle Windsor 一起使用,并且在注册组件时设置参数时遇到问题。

对于包装 DataContext 的类,我有以下接口。我希望能够指定哪个 DataContext 用于不同的服务,因为我要连接到多个数据库来检索数据。

public interface IDataContext
{
    DataContext Context { get; }
}

public interface IReportingDC : IDataContext
{
}

public class Repository<T> : IRepository<T> where T : class
{

公共 IDataContext DC { 获取;放; }

  public Repository(IDataContext dataContext)
  {
    DC = dataContext;
  }
}

这是我的 global.asax.cs 中的注册行。

container.AddComponentLifeStyle<IDataContext, MainDataContext>(Castle.Core.LifestyleType.PerWebRequest);

container.AddComponentLifeStyle<IReportingDC, ReportingDC>(Castle.Core.LifestyleType.PerWebRequest);

container.Register(Component.For<IRepository<ReportingTotals>>()
.ImplementedBy<Repository<ReportingTotals>>()
.Parameters(Parameter.ForKey("dataContext").Eq("IReportingDC"))
.LifeStyle.PerWebRequest
);

当我尝试加载页面时,出现以下错误。

“参数 dataContext 的键无效。因此内核无法覆盖服务依赖项”

4

1 回答 1

4

命名您的组件并使用 ServiceOverrides 而不是参数:

Component.For<IReportingDC>()
         .ImplementedBy<ReportingDC>()
         .Named("IReporting")
         .LifeStyle.PerWebRequest

Component.For<IRepository<ReportingTotals>>()
         .ImplementedBy<Repository<ReportingTotals>>()
         .ServiceOverrides(ServiceOverride.ForKey("dataContext").Eq("IReporting"))

请参阅fluent API 文档以供参考。

于 2010-02-24T17:26:46.733 回答