我正在实现自定义RoleProvider并想使用Ninject,但是我遇到了无参数构造函数问题。关于如何为此注入任何想法?
public class EFRoleProvider:RoleProvider
{
private readonly IRepository _repository;
// I want to INJECT this GOO here!
public EFRoleProvider()
{
IContextFactory contextFactory = new DbContextFactory<myEntities>();
_repository = new RepositoryBase(contextFactory);
}
}
最佳答案
您不能注入硬编码的内容。抱歉。没有DI框架支持此功能。在构造函数中,您已对实例进行了硬编码,因此不再是控制反转。为了执行控制反转,您需要定义尽可能松散耦合的层:
public class EFRoleProvider: RoleProvider
{
private readonly IContextFactory _contextFactory;
public EFRoleProvider(IContextFactory contextFactory)
{
_contextFactory = contextFactory;
}
}
现在继续配置您的DI框架。