最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to dynamically add IAsyncActionFilter implementations to DI container in ASP.NET Core? - Stack Overflow

programmeradmin3浏览0评论

I want to add filters in my project dynamically to the DI container. I want to reduce the workload and error probability in case there are too many filters in the future.

I made an application like the one below, I am not sure if it is a good and correct approach.

 public static class FilterExtensions
 {
     public static IServiceCollection AddFilters(this IServiceCollection services)
     {
         var filterTypes = Assembly.GetExecutingAssembly().GetTypes()
             .Where(t => t.IsClass && !t.IsAbstract && typeof(IAsyncActionFilter).IsAssignableFrom(t));

         foreach (var type in filterTypes)
         {
             services.AddScoped(type);
         }

         return services;
     }
 }

I want to add filters in my project dynamically to the DI container. I want to reduce the workload and error probability in case there are too many filters in the future.

I made an application like the one below, I am not sure if it is a good and correct approach.

 public static class FilterExtensions
 {
     public static IServiceCollection AddFilters(this IServiceCollection services)
     {
         var filterTypes = Assembly.GetExecutingAssembly().GetTypes()
             .Where(t => t.IsClass && !t.IsAbstract && typeof(IAsyncActionFilter).IsAssignableFrom(t));

         foreach (var type in filterTypes)
         {
             services.AddScoped(type);
         }

         return services;
     }
 }
Share Improve this question asked 2 days ago Ozgur SaklanmazOzgur Saklanmaz 5864 silver badges20 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

In my opinion, I don't think this is a good approach, this will automatically add all the filter to the service but will make your application hard to manage.

Normally , the project will not just develop by yourself. If you are using this dynamically add IAsyncActionFilter implementations to DI container. Other member will not hard to identity your project action filter.

I suggest you could consider adding a filter class to put all adding filter method inside it and its clearly to manage the filter related codes.

发布评论

评论列表(0)

  1. 暂无评论