Autofac的基本使用---目录

Posted masonblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Autofac的基本使用---目录相关的知识,希望对你有一定的参考价值。

目录:

Autofac的基本使用---1、前言

Autofac的基本使用---2、普通类型

Autofac的基本使用---3、泛型类型

Autofac的基本使用---4、使用Config配置

Autofac的基本使用---5、常用配置

开发环境:

VS2012。

能完全引用Autofac.dll Autofac.Configuration.dll Autofac.Integration.Mvc.dll 三个文件的版本信息,如下

Install-Package Autofac -version 3.5.2

Install-Package Autofac.Configuration -Version 3.3.0

Install-Package Autofac.Mvc5 -version 3.3.4

主要是Configuration的dll,3.3.0后面的就是4.0.0beta版本。

VS2012再引用时就会报错了,好像是因为VS2012最多只能创建.Net4.5版本的项目导致。

具体原因没有细究。

以上是关于Autofac的基本使用---目录的主要内容,如果未能解决你的问题,请参考以下文章

Autofac的基本使用---3泛型类型

Autofac的基本使用

Autofac的基本使用---4常用配置

依赖注入容器-- Autofac

Autofac入门

IOC容器-Autofac在MVC中实现json方式注入使用