5

在安装依赖项时使用 IoC 容器是一种不好的做法或代码味道吗?

这是我的作文根:

public void Install(IWindsorContainer container, IConfigurationStore store)
{
    Assembly modelAssembly = typeof(UserLoginModel).Assembly;
    Assembly controllerAssembly = typeof(HomeController).Assembly;

    container.Install(
        new MvcInfrastructureInstaller(modelAssembly, viewAssembly, controllerAssembly, applicationTitle, resourceAssemblyLocations),
        new MiniMembershipInstaller(),
        new ServiceInstaller(),
        new RepositoryInstaller(),
        new LibraryInstaller(),
        new AutoMapperProfileInstaller() // this installer needs to resolve dependencies such as repositories through the container itself, so it goes last.
    );
}

AutoMapperProfileInstaller需要解析包含依赖项的配置文件以初始化映射器

public class AutoMapperProfileInstaller : IWindsorInstaller
{
    public void Install(IWindsorContainer container, IConfigurationStore store)
    {
        Profile entityToViewModel = container.Resolve<EntityToViewModelProfile>();
        Profile[] profiles = new[] { entityToViewModel };

        Mapper.Initialize(config =>
        {
            config.ConstructServicesUsing(container.Resolve);

            foreach (Profile profile in profiles)
            {
                config.AddProfile(profile);
            }
        });
    }
}

这在很多层面上都感觉不对,初始化AutoMapper配置文件的更好方法是什么?

4

1 回答 1

0

该方法的唯一错误是您手动指定IWindowsInstaller实现。使用反射来找到它们并Activator.CreateInstance实例化实现。

它为您提供了一种灵活的配置方法,系统中的每个部分/模块都负责自己的注册。

IMapperConfiguration但是,我会为 AutoMapper 配置(单一职责)创建一个新接口。也使用反射来扫描程序集。

于 2012-08-14T06:46:59.543 回答