csharp autofac webapi配置,在dll加载时预处理。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp autofac webapi配置,在dll加载时预处理。相关的知识,希望对你有一定的参考价值。

using Autofac;
using Autofac.Integration.WebApi;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Web;
using System.Web.Http;

[assembly: PreApplicationStartMethod(typeof(XXXNamespace.IocConfig), "RegisterAndSetResolver")]

namespace XXXNamespace
{
    public sealed class IocConfig
    {
        public static void RegisterAndSetResolver()
        {
            var configuration = GlobalConfiguration.Configuration;
            var builder = new ContainerBuilder();

            //builder.RegisterType<MyDbContext>().InstancePerRequest();
            builder.RegisterAssemblyTypes(typeof(BaseService).Assembly)
                .Where(t => t.Name.EndsWith("Service"))
                .AsImplementedInterfaces()
                .InstancePerRequest();

            builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
            builder.RegisterWebApiFilterProvider(configuration);

            var container = builder.Build();
            // Set the WebApi dependency resolver.  
            configuration.DependencyResolver = new AutofacWebApiDependencyResolver(container);
        }
    }
}

以上是关于csharp autofac webapi配置,在dll加载时预处理。的主要内容,如果未能解决你的问题,请参考以下文章

c# autofac结合WebApi的使用

Autofac 同时支持MVC 与Webapi

WebApi中的Autofac

.net webapi+autofac+autoMapper 单元测试

WebAPI2使用AutoFac依赖注入完整解决方案。

使用Autofac动态注入启动Api服务