autofac解析Mvc和Webapi的坑
我们在项目中很早就开始使用autofac,也以为知道与mvc和webapi集成的做法。var builder = new ContainerBuilder();// Mvc Registerbuilder.RegisterControllers(Assembly.GetExecutingAssembly()).AsSelf().PropertiesAutowired();...