我正在尝试使用以下通用存储库接口进行DI和构造器注入:
public interface IRepository<TEntity> : IDisposable where TEntity : class
问题是为了定义一个接口的实例,我必须提供这样的类类型:
private IRepository<Person> _personRepository;
这个问题是如果我使用DI(并且我使用Unity for IoC框架),那么我必须在我的构造函数中定义多个实例来获取我需要使用的所有存储库接口:
public MyClass(IRepository<Person> personRepository,IRepository<Orders> ordersRepository,IRepository<Items> itemsRepository,IRepository<Locations> locationsRepository) { _personRepository = personRepository; _OrdersRepository = ordersRepository; _itemsRepository = itemsRepository; _locationsRepository = locationsRepository; }
问题:
这是可以吗?
>如果不是我失去了这个概念?
>即使这是正确的,Unity将注册接口与具体类型有什么关系?我已经做了,因为通用存储库强制我声明.
请帮我清除这一点,谢谢你的帮助!