EasyInjector.WebApi 1.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasyInjector.WebApi --version 1.5.0                
NuGet\Install-Package EasyInjector.WebApi -Version 1.5.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.WebApi" Version="1.5.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasyInjector.WebApi --version 1.5.0                
#r "nuget: EasyInjector.WebApi, 1.5.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.WebApi as a Cake Addin
#addin nuget:?package=EasyInjector.WebApi&version=1.5.0

// Install EasyInjector.WebApi as a Cake Tool
#tool nuget:?package=EasyInjector.WebApi&version=1.5.0                

EasyInjector

  • 極簡實作 沒有任何其他套件依賴
  • 仿照 .net core dependency injection 的使用方法
  • 簡單的注入依賴,適用於舊專案.NET4 Framework
  • 目標也只是讓一些很古老的專案在無法升級的請況下,有限度的導入注入依賴。
  • Nuget Package Install

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.AddScoped<INamed<IFtp>>(sp =>
        new NamedService<IFtp>(name =>
            new MockFtp(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());

Product 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.5.1 107 8/7/2024
1.5.0 89 8/7/2024