同时使用继承和依赖注入
本文关键字:依赖 注入 继承 | 更新日期: 2023-09-27 18:34:02
以下是
我的应用程序调用数据库的方式:Web 应用程序 -> 业务层 -> 数据层
一切都在使用依赖注入。
例如:
在我的 Web 应用程序的控制器中,我进行了如下调用:
await _manager.GetCustomers();
进入我的业务层:
public class CustomerManager : ICustomerManager
{
private ICustomerRepo _repository;
public CustomerManager(ICustomerRepo repository)
{
_repository = repository;
}
public Task<IList<Customer>> GetCustomers(string name = null)
{
return _repository.GetCustomers(name);
}
}
进入我的数据层:
public class CustomerRepo : BaseRepo, ICustomerRepo
{
public CustomerRepo(IConfigurationRoot configRoot)
: base(configRoot)
{
}
public Customer Find(int id)
{
using (var connection = GetOpenConnection())
{
...
}
}
}
这里的诀窍是 CustomerRepo 继承自 BaseRepo 以便能够使用 GetOpenConnection(( 函数。但与此同时,BaseRepo需要从Web应用程序注入IConfigurationRoot。我怎样才能同时做到这两点?
public class BaseRepo
{
private readonly IConfigurationRoot config;
public BaseRepo(IConfigurationRoot config)
{
this.config = config;
}
public SqlConnection GetOpenConnection(bool mars = false)
{
string cs = config.GetSection("Data:DefaultConnection:ConnectionString").ToString();
...
}
}
无论依赖关系注入如何,您如何实例化(甚至编译(CustomerRepo?您需要一个 IConfigurationRoot
参数才能传递到基构造函数。喜欢:
public CustomerRepo(IConfigurationRoot configRoot)
: base(configRoot)
{
}
有关基本关键字的信息,请参阅 https://msdn.microsoft.com/en-us/library/hfw7t1ce.aspx。