为自动工厂设置约定

时间:2013-07-18 16:56:08

标签: c# ninject factory convention-over-configur

通过使用通用IDataRepositoryFactory方法定义Create非泛型接口:

public interface IDataRepositoryFactory
{
    T Create<T>(DataContext context) where T : IDataRepository; // new non-generic interface
}

我可以避免编写工厂实现:

        _kernel.Bind(t => t.FromAssemblyContaining(typeof(DataRepository<>))
                           .SelectAllInterfaces()
                           .EndingWith("RepositoryFactory")
                           .BindToFactory());

        _kernel.Bind(t => t.FromAssemblyContaining(typeof(DataRepository<>))
                           .SelectAllClasses()
                           .WhichAreNotGeneric()
                           .EndingWith("Repository")
                           .BindAllInterfaces());

然而,这个解决方案有利有弊:

优点:

  • 不再需要手动实现抽象工厂了。

缺点:

  • 将此IDataRepositoryFactory接口作为依赖项,感觉很像使用服务定位器
    • 功能强大的通用工厂可以创建任何存储库类型,甚至是那些完全不相关模块的命名空间中的存储库类型。
    • 现在隐藏在抽象工厂后面的实际依赖项;消费者的构造函数不再静态地记录所需的存储库/工厂。

有没有更好的方法?

1 个答案:

答案 0 :(得分:0)

目前不支持Generic Factory接口。所以,这已经是你能做的最好的了。