【ABP Source Code Study】Dependency Injection Part

2022年6月24日 2384点热度 1人点赞 0条评论
内容目录

IServiceCollection can replace services.
ServiceDescriptor can generate custom services to be injected using methods like .Scoped().

    public static IServiceCollection AddAbpDynamicOptions<TOptions, TManager>(this IServiceCollection services)
        where TOptions : class
        where TManager : AbpDynamicOptionsManager<TOptions>
    {
        services.Replace(ServiceDescriptor.Scoped(typeof(IOptions<TOptions>), typeof(TManager)));
        services.Replace(ServiceDescriptor.Scoped(typeof(IOptionsSnapshot<TOptions>), typeof(TManager)));

        return services;
    }

Insert the project at the specified position.
To quickly retrieve the services to be used, ABP injects services at the beginning of the container using Insert.


        // Add to the beginning for fast retrieve
        services.Insert(0, ServiceDescriptor.Singleton(typeof(ObjectAccessor<T>), accessor));
        services.Insert(0, ServiceDescriptor.Singleton(typeof(IObjectAccessor<T>), accessor));

痴者工良

高级程序员劝退师

文章评论