我正在使用C#、. NET Framework 4.7和Ninject 3.2.2.0开发ASP.NET MVC 5。
我正在尝试使用多重绑定,但是我不知道该怎么做:
container.Bind<IUnitOfWork>().To<TRZFDbContext>().InRequestScope();
container.Bind<IUnitOfWork>().To<ERPDbContext>().InRequestScope().Named("ERP");
我正在尝试命名绑定。
我使用IUnitOfWork
作为GenericRepository
构造函数的参数:
public class GenericRepository<TEntity> : IGenericRepository<TEntity> where TEntity : class
{
protected DbSet<TEntity> _dbSet;
private DbContext _context;
public GenericRepository(IUnitOfWork unitOfWork)
{
_context = (DbContext)unitOfWork;
_dbSet = _context.Set<TEntity>();
}
[ ... ]
}
我有绑定,他们将使用ERPDbContext
或TRZFDbContext
:
container.Bind<IGenericRepository<ProductGTINs>>().To<GenericRepository<ProductGTINs>>();
// ERP
container.Bind<IGenericRepository<IC_ORD_VIEW>>().To<GenericRepository<IC_ORD_VIEW>>();
第一个使用TRZFDbContext
,第二个使用ERPDbContext
。
在以下控制器中:
public class ERPController : Controller
{
private readonly IGenericRepository<IC_ORD_VIEW> ordViewRepository;
public ERPController(IGenericRepository<IC_ORD_VIEW> ordViewRepository)
{
this.ordViewRepository = ordViewRepository;
}
[ ... ]
}
我收到此错误:
Error activating IUnitOfWork
More than one matching bindings are available.
Matching bindings:
1) binding from IUnitOfWork to TRZFDbContext
2) binding from IUnitOfWork to ERPDbContext
Activation path:
3) Injection of dependency IUnitOfWork into parameter unitOfWork of constructor of type GenericRepository{IC_ORD_VIEW}
2) Injection of dependency IGenericRepository{IC_ORD_VIEW} into parameter ordViewRepository of constructor of type ERPController
1) Request for ERPController
但是如果我更改构造函数:
public class ERPController : Controller
{
private readonly IGenericRepository<IC_ORD_VIEW> ordViewRepository;
public ERPController([Named("ERP")]IGenericRepository<IC_ORD_VIEW> ordViewRepository)
{
this.ordViewRepository = ordViewRepository;
}
[ ... ]
}
我得到了错误:
Error activating IGenericRepository{IC_ORD_VIEW}
No matching bindings are available, and the type is not self-bindable.
Activation path:
2) Injection of dependency IGenericRepository{IC_ORD_VIEW} into parameter ordViewRepository of constructor of type ERPController
1) Request for ERPController
Suggestions:
1) Ensure that you have defined a binding for IGenericRepository{IC_ORD_VIEW}.
2) If the binding was defined in a module, ensure that the module has been loaded into the kernel.
3) Ensure you have not accidentally created more than one kernel.
4) If you are using constructor arguments, ensure that the parameter name matches the constructors parameter name.
5) If you are using automatic module loading, ensure the search path and filters are correct.
如何设置必须使用的绑定?
答案 0 :(得分:0)
第二个示例失败,因为您要向[Named("ERP")]
参数添加IGenericRepository
,但是命名绑定是针对IUnitOfWork
的,因此找不到任何匹配的绑定。
您可以在IGenericRepository
绑定中提供构造函数参数,而不是使用命名绑定,例如:
container.Bind<IGenericRepository<IC_ORD_VIEW>>()
.To<GenericRepository<IC_ORD_VIEW>>()
.WithConstructorArgument("ordViewRepository", context => new ERPDbContext());