EasyInjector 1.6.0
dotnet add package EasyInjector --version 1.6.0
NuGet\Install-Package EasyInjector -Version 1.6.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasyInjector" Version="1.6.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyInjector --version 1.6.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: EasyInjector, 1.6.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install EasyInjector as a Cake Addin #addin nuget:?package=EasyInjector&version=1.6.0 // Install EasyInjector as a Cake Tool #tool nuget:?package=EasyInjector&version=1.6.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasyInjector
- 極簡實作 沒有任何其他套件依賴
- 仿照 .net core dependency injection 的使用方法
- 簡單的注入依賴,適用於舊專案.NET4 Framework
- 目標也只是讓一些很古老的專案在無法升級的請況下,有限度的導入注入依賴。
- Nuget Package Install
- 支援 MVC 注入依賴
- 支援 Web API 注入依賴 支援
Singleton 範例
using(var injector = new EasyInjector()) {
//註冊服務
injector.AddSingleton<IWebApi>(sp => new MockWebApi());
//取得服務
var srv = injector.GetService<IWebApi>();
srv.GetSomething();
}
Scope 範例
using(var injector = new EasyInjector()) {
//註冊服務
injector.AddScope<IWebApi>(sp => new MockWebApi());
// 取得服務
using(var scope = injector.CreateScope()) {
var srv = scope.ServiceProvider.GetService<IWebApi>();
srv.GetSomething();
}
}
額外提供 INamed 作為同類服務有多個實例
using (var injector = new EasyInjector())
{
// 註冊服務 定義名稱如何取得實例
injector.AddNamedScoped<INamed<IFtp>>((sp,name) =>new Ftp(name));
using (var scope = injector.CreateScope())
{
// 取得本服務 再透過他取得其他實例 by Name
var srvf = scope.ServiceProvider.GetRequiredService<INamed<IFtp>>();
// 依名稱取的不同實例
var srv1 = srvf.GetByName("Spring");
var srv2 = srvf.GetByName("Summer");
// 名稱相同會取到同一個 於相同Scope中
var srv3 = srvf.GetByName("Spring");
}
}
額外提供 IProvider 特定服務的提供者 常用於Scope場合。
// 某服務的應用情境展示
public class SomeService {
readonly IProvider<IFtp> _ftpf;
readonly IServiceScopeFactory _scopef;
// 建構式有清楚的描述本服務 有依賴IFtp的關係
public SomeService(
IProvider<IFtp> ftpf,
IServiceScopeFactory scopef)
{
_ftpf = ftpf;
_scopef = scopef;
}
// 某些動作才須要實際取得IFtp服務 呼叫完成就釋放
public void DoSomething() {
using(var scope = _scopef.CreateScope()) {
// 這時候才真的產生這個服務
var ftp = _ftpf.Get(scope);
ftp.DoSomething();
}
}
}
匯入其他的注入器的服務
這個想法希望是可以快速方便使用,不用重複註冊工作,只是不能算是很嚴謹就是。
// 權限專案的注入器
class SecurityInjector : EasyInjector {
SecurityInjector() {
//註冊註冊
AddSingleton<ISecurityBusiness>(sp => ...);
}
}
// 本專案的注入器
class AppInjector : EasyInjector {
AppInjector() {
// 匯入權限的服務的服務註冊表
ImportServices(new SecurityInjector());
// 註冊本專案的服務
AddSingleton<IMockBusindess>(sp => ...);
}
}
var injetor = new AppInjector();
// 取得 其他模組的服務
var srv1 = injector.Get<ISecurityBusiness>();
嘗試註冊 如果已經存在的話就不註冊
var injetor = new EasyInjector();
//嘗試註冊服務 (這個會成功註冊,因為不存在)
injector.TryAddSingleton<IApi>(sp => new Api1());
//嘗試註冊服務 (這個因為已經存在過,所以忽略)
injector.TryAddSingleton<IApi>(sp => new Api2());
//註冊服務 這個會成功,因為是直接覆蓋掉
injector.AddSingleton<IApi>(sp => new Api3());
//註冊服務 這個會發送異常,因為服務生命週期與之前不相同
injector.AddScope<IApi>(sp => new Api4());
MVC 注入依賴支援
- 加入套件 EasyInjector.WebMvc
// 於 Application_Start() 事件內 登記注入器
var injector = new EasyInjector();
// 啟用MVC注入
EasyInjectorMvcExtension.UseEasyInjector(injector);
API 注入依賴支援
- 加入套件 EasyInjector.WebApi
using Owin;
public class Startup {
public void Configuration(IAppBuilder app) {
var injector = new EasyInjector();
var apiConfig = new System.Web.Http.HttpConfiguration();
// 啟用API注入
app.UseEasyInjector(apiConfig, injector);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- No dependencies.
NuGet packages (3)
Showing the top 3 NuGet packages that depend on EasyInjector:
Package | Downloads |
---|---|
EasyInjector.WebMvc
簡單的模仿 .net core 注入依賴庫 整合到 WebMvc 專案 |
|
EasyInjector.Dev
EasyInject擴充套件,提供服務方法的簡單複寫,適用於整合測試 |
|
EasyInjector.WebApi
簡單的模仿 .net core 注入依賴庫 整合到 WebApi Owin專案 |
GitHub repositories
This package is not used by any popular GitHub repositories.