通过使用通用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
接口作为依赖项,感觉很像使用服务定位器:
有没有更好的方法?
答案 0 :(得分:0)
目前不支持Generic Factory接口。所以,这已经是你能做的最好的了。