EasilyNET.AutoDependencyInjection 1.9.1

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

// Install EasilyNET.AutoDependencyInjection as a Cake Tool
#tool nuget:?package=EasilyNET.AutoDependencyInjection&version=1.9.1                
EasilyNET.AutoDependencyInjection

自动注入模块,参考 ABP 的代码实现.

如何使用
  • 使用 Nuget 包管理工具添加依赖包 EasilyNET.AutoDependencyInjection
  • a.使用特性注入服务
[DependencyInjection(ServiceLifetime.Singleton, AddSelf = true)]
public class XXXService : IXXXService
{
    // TODO: do something
    Console.WriteLine("使用特性注入服务");
    ...
}
  • b.使用接口的方式,继承 IScopedDependency, ISingletonDependency, ITransientDependency
/// <summary>
/// 测试模块
/// </summary>
public class MyTestModule : ITest, IScopedDependency
{
    /// <summary>
    /// Show
    /// </summary>
    public void Show()
    {
        Console.WriteLine("Test");
    }
}

/// <summary>
/// 测试
/// </summary>
//[IgnoreDependency]
public interface ITest
{
    /// <summary>
    /// Show函数
    /// </summary>
    void Show();
}

// 在其他地方获取服务,并执行方法
var test = context.Services.GetService<MyTestModule>();
test?.Show();
...
  • 3.继承 AppModule 类,然后显示加入到 AppWebModule 配置中
  • Step1.创建 CorsModule.cs
// 这里以跨域服务注册为例
/// <summary>
/// 配置跨域服务及中间件
/// </summary>
public class CorsModule : AppModule
{
    /// <summary>
    /// 注册和配置服务
    /// </summary>
    /// <param name="context"></param>
    public override void ConfigureServices(ConfigureServicesContext context)
    {
        var config = context.Services.GetConfiguration();
        var allow = config["AllowedHosts"] ?? "*";
        _ = context.Services.AddCors(c => c.AddPolicy("AllowedHosts", s => s.WithOrigins(allow.Split(",")).AllowAnyMethod().AllowAnyHeader()));
    }
    /// <summary>
    /// 注册中间件
    /// </summary>
    /// <param name="context"></param>
    public override void ApplicationInitialization(ApplicationContext context)
    {
        var app = context.GetApplicationBuilder();
        _ = app.UseCors("AllowedHosts");
    }
}
  • Step2.创建 AppWebModule.cs
/**
 * 要实现自动注入,一定要在这个地方添加
 */
[DependsOn(
    typeof(DependencyAppModule),
    typeof(CorsModule)
)]
public class AppWebModule : AppModule
{
    /// <summary>
    /// 注册和配置服务
    /// </summary>
    /// <param name="context"></param>
    public override void ConfigureServices(ConfigureServicesContext context)
    {
        base.ConfigureServices(context);
        _ = context.Services.AddHttpContextAccessor();
    }
    /// <summary>
    /// 注册中间件
    /// </summary>
    /// <param name="context"></param>
    public override void ApplicationInitialization(ApplicationContext context)
    {
        base.ApplicationInitialization(context);
        var app = context.GetApplicationBuilder();
        _ = app.UseAuthorization();
        // 这里可添加自己的中间件
    }
}
  • Step3.最后再 Program.cs 中添加如下内容.
// Add services to the container.
// 自动注入服务模块
builder.Services.AddApplication<AppWebModule>();

var app = builder.Build();

// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment()) _ = app.UseDeveloperExceptionPage();

// 添加自动化注入的一些中间件.
app.InitializeApplication();

app.MapControllers();

app.Run();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows 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
3.24.919.92 46 9/19/2024
3.24.914.125 81 9/14/2024
3.24.914.115 75 9/14/2024
3.24.914.111 66 9/14/2024
3.24.911.95 73 9/11/2024
3.24.908.215 56 9/8/2024
3.24.904.200 69 9/4/2024
3.24.828.163 101 8/28/2024
3.24.820.173 82 8/20/2024
3.24.814.92 103 8/14/2024
3.24.812.115 81 8/12/2024
3.24.802.100 42 8/2/2024
3.24.801.162 52 8/1/2024
3.24.801.160 48 8/1/2024
3.24.801.155 50 8/1/2024
3.24.801.153 50 8/1/2024
3.24.730.164 48 7/30/2024
3.24.730.91 45 7/30/2024
3.24.724.91 52 7/24/2024
3.24.718.105 69 7/18/2024
3.24.716.95 81 7/16/2024
3.24.712.94 78 7/12/2024
3.24.710.14 76 7/9/2024
3.24.709.105 86 7/9/2024
3.24.704.94 87 7/4/2024
3.24.701.90 81 7/1/2024
3.24.628.114 88 6/28/2024
3.24.627.145 85 6/27/2024
3.24.620.160 78 6/20/2024
3.24.613.115 75 6/13/2024
3.24.612.95 79 6/12/2024
3.24.528.90 82 5/28/2024
3.24.522.84 93 5/22/2024
3.24.512.213 83 5/12/2024
3.24.508.112 104 5/8/2024
2.2024.428.71 90 4/28/2024
2.2024.427.1128 90 4/27/2024
2.2.72 100 4/14/2024
2.2.71 79 4/12/2024
2.2.8 83 4/26/2024
2.2.6 98 4/10/2024
2.2.5 107 3/26/2024
2.2.4 88 3/25/2024
2.2.3 104 3/24/2024
2.2.2 98 3/21/2024
2.2.1 93 3/20/2024
2.2.0 115 3/13/2024
2.1.9 128 2/21/2024
2.1.8 96 2/18/2024
2.1.7 107 2/16/2024
2.1.6 110 2/14/2024
2.1.5 100 2/14/2024
2.1.4 122 2/9/2024
2.1.3 98 2/8/2024
2.1.2 126 2/5/2024
2.1.1.2 199 12/26/2023
2.1.1.1 93 12/26/2023
2.1.1 108 12/25/2023
2.1.0 142 12/17/2023
2.0.11 176 12/6/2023
2.0.1 161 11/15/2023
2.0.0 135 11/14/2023
1.9.1 146 11/1/2023
1.9.0 114 10/19/2023
1.9.0-preview2 277 10/12/2023
1.9.0-preview1 102 10/12/2023
1.8.9 163 10/11/2023
1.8.8 157 10/11/2023
1.8.7-rc2 122 9/21/2023
1.8.7-rc1 104 9/12/2023
1.8.6 151 8/31/2023
1.8.5 751 8/25/2023
1.8.4 144 8/24/2023
1.8.3 156 8/23/2023
1.8.2 243 8/22/2023
1.8.1 175 8/18/2023
1.8.0 167 8/15/2023
1.7.9 206 8/11/2023
1.7.8 148 8/11/2023
1.7.7 175 8/10/2023
1.7.6 172 8/9/2023
1.7.5 221 8/9/2023
1.7.4 261 8/3/2023
1.7.3 166 8/1/2023
1.7.2 163 7/31/2023
1.7.1 160 7/27/2023
1.7.0 169 7/25/2023
1.6.9 156 7/25/2023
1.6.8 168 7/24/2023
1.6.7 179 7/20/2023
1.6.6 183 7/19/2023
1.6.5 159 7/19/2023
1.6.4 166 7/17/2023
1.6.3 140 7/17/2023
1.6.2 195 7/12/2023
1.6.1 205 6/30/2023
1.6.0 135 6/26/2023
1.5.9 150 6/22/2023
1.5.8 151 6/15/2023
1.5.7.1 158 6/14/2023
1.5.7 167 6/14/2023
1.5.6.2 202 6/7/2023
1.5.6.1 136 6/7/2023
1.5.6 139 6/7/2023
1.5.5.2 192 5/26/2023
1.5.5.1 155 5/26/2023
1.5.5 156 5/26/2023
1.5.4.4 167 5/25/2023
1.5.4.3 201 5/23/2023
1.5.4.2 266 5/17/2023
1.5.4.1 158 5/16/2023
1.5.4 241 5/11/2023
1.5.3 160 5/11/2023
1.5.2 112 5/10/2023
1.5.1 112 5/10/2023
1.5.0 151 5/6/2023
1.4.0 107 5/5/2023
1.3.9 121 4/23/2023
1.3.8.6 103 4/23/2023
1.3.8.5 114 4/21/2023
1.3.8.1 180 4/12/2023
1.3.8 119 4/11/2023
1.3.7 143 4/9/2023
1.3.6.3 199 4/1/2023
1.3.6.2 114 3/31/2023
1.3.6.1 112 3/31/2023
1.3.6 88 3/31/2023
1.3.5 108 3/30/2023
1.3.4.1 176 3/29/2023
1.3.4 121 3/28/2023
1.3.3 97 3/28/2023
1.3.2 132 3/26/2023
1.3.1 187 3/22/2023
1.3.0 124 3/21/2023
1.2.0 102 3/21/2023
1.1.0 126 3/17/2023
1.0.9 116 3/15/2023
1.0.8 116 3/15/2023
1.0.7 101 3/15/2023
1.0.6 119 3/13/2023
1.0.5 125 3/13/2023
1.0.4 103 3/13/2023
1.0.3 192 2/26/2023
1.0.2 114 2/26/2023
1.0.1 114 2/23/2023
1.0.0 265 2/20/2023