gpt4 book ai didi

asp.net-mvc - 如何解决多层构造函数注入(inject)

转载 作者:行者123 更新时间:2023-12-02 05:07:10 25 4
gpt4 key购买 nike

在我的项目中,我有一个 Controller 依赖于 IRepositoryProvider 等。

public class HomeController : BaseController
{
public HomeController(ISessionWrapper sessionWrapper,
IRepositoryProvider repositoryProvider,
IApplicationConfiguration applicationConfiguration)
: base(sessionWrapper, repositoryProvider, applicationConfiguration)
{}

...

IRepositoryProvider 及其实现位于 BLL 层中。另一件需要注意的事情是 IRepositoryProvider 也有一些参数。这些用于确定要使用的连接字符串(环境*5 可能的连接)。

    public RepositoryProvider(string environment, IApplicationConfiguration applicationConfiguration)
{
_applicationConfiguration = applicationConfiguration;
_environment = environment;
}

这一切都适用于两层和这个 Ninject 配置。

kernel.Bind<IRepositoryProvider>()
.To<RepositoryProvider>()
.InRequestScope()
.WithConstructorArgument("environment",
context => context.Kernel.Get<ISessionWrapper>().CurrentEnvironment)
.WithConstructorArgument("applicationConfiguration",
context => context.Kernel.Get<IApplicationConfiguration>());

当我引入服务层时,我的问题就出现了。我不想依赖 Controller 中的 IRepositoryProvider 进行数据访问,而是想使用服务层。理想情况下,我不想引用 BLL 层,而只引用服务层。

public class HomeService : IHomeService
{
public IRepositoryProvider RepositoryProvider { get; private set; }

public HomeService(IRepositoryProvider repositoryProvider)
{
RepositoryProvider = repositoryProvider;
}
...
}

所以我的问题是:我可以不从 MVC 项目中引用服务层和 BLL 层吗?或者整个设置是否有巨大的代码味道?

谢谢。

更新:我想我应该说出我理想的引用资料。网络 -> 服务 -> BLL。目前,Web 引用了 Service 和 BLL,以便 Ninject 解决所有问题。

更新 2:这看起来像是一个可能的解决方案吗? How to tell Ninject to bind to an implementation it doesn't have a reference to

最佳答案

这就是我通常根据需求构建 MVC 项目的方式。

表示层 > 服务层 > 业务层 > 数据访问层。

表示层包含:ViewModels、Views、Controllers。 (引用服务层,Ninject ddl)

服务层:WCF。 (引用 BAL 等)

业务层:包含我所说的 Orchestrator 及其接口(interface)(引用 DAL、域)

数据访问层:包含存储库及其接口(interface)(引用域)

域:包含 POCO 对象

核心:我实际安装和配置 Ninject 的地方(引用 BAL、DAL 等)

将 Ninject 添加到表示层以外的另一个项目:

将以下内容添加到 Global.Asasx.cs:

DependencyResolver.SetResolver(new NinjectDependencyResolver());

然后新建一个项目sucche as core。在那里安装 Ninject 并添加以下类:

您需要从表示层引用 Ninject dll

 public class NinjectDependencyResolver : IDependencyResolver {
private IKernel kernel;

public NinjectDependencyResolver()
{
kernel = new StandardKernel();
AddBindings();
}

public object GetService(Type serviceType)
{
return kernel.TryGet(serviceType);
}

public IEnumerable<object> GetServices(Type serviceType)
{
return kernel.GetAll(serviceType);
}

public IBindingToSyntax<T> Bind<T>()
{
return kernel.Bind<T>();
}

public IKernel Kernel
{
get { return kernel; }
}

private void AddBindings()
{
//Add your Bindings here
}

}

关于asp.net-mvc - 如何解决多层构造函数注入(inject),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16110558/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com