1

也许这是一个愚蠢的问题,但我坚持下去。

我试图在整个应用程序中使用 SimpleContainer 作为 IoC,所以在我的数据访问层中,我以这种方式定义了一个引导程序:

    public class AppBootstrapper : BootstrapperBase 
    {
        SimpleContainer container;

        public AppBootstrapper()
        {
            Start();
        }

        protected override void Configure()
        {
            container = new SimpleContainer();
            container.PerRequest<IMyClass, MyClass>();
        }

        protected override object GetInstance(Type service, string key)
        {
            var instance = container.GetInstance(service, key);
            if (instance != null)
                return instance;

            throw new InvalidOperationException("Could not locate any instances.");
        }

但是我该如何使用它呢?

我只是想获得一个实现并尝试编写:

IMyClass mc = new IoC.GetInstance(IMyClass );

但我没有找到如何

我试过了:

SimpleContainer container = new SimpleContainer();
IMyClass mc = new container.GetInstance(IMyClass,null);

和:

IMyClass mc = new IoC.GetInstance(IMyClass, null);

但它们都不起作用。

怎么了?

编辑:

而且,如果我为每个项目都有一个 AppBootstrapper.cs 都运行良好或最佳实践不同?

4

1 回答 1

10
IMyClass mc = new IoC.GetInstance(IMyClass );

你可以这样做,因为它IoC是一个static类,所以你不能创建它的新实例,而是你可以这样做:

IMyClass mc = IoC.Get<IMyClass>();

然而,这也不是推荐的方式。

在你像这样初始化你的引导程序之后,假设你有一个SellViewModel这样的:

public class ShellViewModel {

    private IMyClass _mc;

    public ShellViewModel(IMyClass mc) {
        _mc = mc;
    }
}

现在,当 Caliburn.Micro 尝试实例化 时,ShellViewModel它会注意到构造函数接受 的实例IMyClass,然后它将自动为您创建该类的实例并将其提供给ShellViewModel.

我真的建议你阅读Dependency InversionInversion of Control,然后阅读该类的文档SimpleContainer,然后阅读文章Screens, Conductors and Composition以了解整个过程。

于 2013-10-14T16:15:26.930 回答