MVC autofac 属性注入
Posted xiaonangua
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MVC autofac 属性注入相关的知识,希望对你有一定的参考价值。
Global文件
public class MvcApplication : System.Web.HttpApplication { private static IContainer Container { get; set; } protected void Application_Start() { AreaRegistration.RegisterAllAreas(); FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); RouteConfig.RegisterRoutes(RouteTable.Routes); BundleConfig.RegisterBundles(BundleTable.Bundles); var builder = new ContainerBuilder(); //根据名称约定(服务层的接口和实现均以Contract结尾),实现服务接口和服务实现的依赖 builder.RegisterAssemblyTypes(Assembly.Load("BLOG.IBLL"), Assembly.Load("BLOG.BLL")).Where(t => t.Name.EndsWith("Contract")).AsImplementedInterfaces().PropertiesAutowired().InstancePerDependency(); // 根据名称约定(数据访问层的接口和实现均以Repository结尾),实现数据访问接口和数据访问实现的依赖 builder.RegisterAssemblyTypes(Assembly.Load("BLOG.IDAL"), Assembly.Load("BLOG.DAL")).Where(t => t.Name.EndsWith("Repository")).AsImplementedInterfaces().PropertiesAutowired().InstancePerDependency(); builder.RegisterControllers(Assembly.GetExecutingAssembly()).PropertiesAutowired(); Container = builder.Build(); DependencyResolver.SetResolver(new AutofacDependencyResolver(Container)); } }
控制器
public class DefaultController : Controller { //属性自动注入 public IProvinceContract ProvinceContract { get; set; } // GET: Default public ActionResult Index() { return View(); } public ActionResult GetProvinceList() { var list = ProvinceContract.GetList(p => p.Id > 0); return Json(list); } }
PropertiesAutowired 属性注入
IBLL
public interface IProvinceContract { /// <summary> /// 获取列表 /// </summary> /// <param name="where"></param> /// <returns></returns> IQueryable<Province> GetList(Expression<Func<Province, bool>> where); }
BLL
public class ProvinceContrator: IProvinceContract { //属性自动注入 public IProvinceRepository ProvinceRepository { get; set; } public IQueryable<Province> GetList(Expression<Func<Province, bool>> where) { return ProvinceRepository.GetList(where); } }
以上是关于MVC autofac 属性注入的主要内容,如果未能解决你的问题,请参考以下文章
ASP.NET MVC IOC依赖注入之Autofac系列- WebForm当中应用
ASP.NET Core Web 应用程序系列- 在ASP.NET Core中使用Autofac替换自带DI进行构造函数和属性的批量依赖注入(MVC当中应用)
IOC容器-Autofac在MVC中实现json方式注入使用
ASP.NET MVC IOC依赖注入之Autofac系列开篇
ASP.NET Core Web 应用程序系列- 在ASP.NET Core中使用Autofac替换自带DI进行批量依赖注入(MVC当中应用)