ASP.NET Core 中的依赖注入是通过扩展方法在 IServiceCollection 接口中添加服务的。具体步骤
时间: 2024-03-24 07:38:05 浏览: 117
详解asp.net core 依赖注入
在 ASP.NET Core 中使用依赖注入,需要完成以下几个步骤:
1. 创建一个 ASP.NET Core Web 应用程序或者一个类库项目;
2. 在 `Startup` 类的 `ConfigureServices` 方法中,添加需要注入的服务。可以通过 `IServiceCollection` 接口提供的扩展方法进行注册,例如:
```csharp
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<IMyService, MyService>();
services.AddScoped<IOtherService, OtherService>();
services.AddTransient<IMyTransientService, MyTransientService>();
}
```
3. 在需要使用依赖注入的类中,通过构造函数注入所需的服务。例如:
```csharp
public class MyController : Controller
{
private readonly IMyService _myService;
private readonly IOtherService _otherService;
public MyController(IMyService myService, IOtherService otherService)
{
_myService = myService;
_otherService = otherService;
}
// ...
}
```
通过以上步骤,就可以在 ASP.NET Core 应用程序中使用依赖注入了。需要注意的是,ASP.NET Core 中的依赖注入是可插拔的,可以自由选择不同的 DI 容器实现(例如 Microsoft.Extensions.DependencyInjection、Autofac 等)。
阅读全文