整个项目基本部分搭建完毕之后如下
先在每一个项目中引入ef
然后再UI层引入以下两个文件autofac和Autofac.Mvc5
创建一个 User.cs。里面放几个属性 id、name、pwd。
public interface IBaseDALwhere TEntity : class { #region 1.0 增 void Add(TEntity model); #endregion #region 2.0 删 void Delete(TEntity model, bool isAddedDbContext); #endregion #region 3.0 改 void Edit(TEntity model, string[] propertyNames); #endregion #region 4.0 查 #region 4.0.1 根据条件查询 List QueryWhere(Expression bool>> where); #endregion #endregion #region 5.0 统一保存 /// /// 统一将EF容器对象中的所有代理类生成相应的sql语句发给db服务器执行 /// /// int SaveChanges(); #endregion }
因为所创建的model只有一个user,所以IDAL层到此结束。
public class DbContextFactory { //获取当前EF上下文的唯一实例 public static DbContext GetCurrentThreadInstance() { DbContext obj = CallContext.GetData(typeof(DbContextFactory).FullName) as DbContext; if (obj == null) { obj = new DBContext(); CallContext.SetData(typeof(DbContextFactory).FullName, obj); } return obj; } }
public class BaseDAL: IBaseDAL where TEntity : class {//1.0 实例化EF上下文 DbContext db = DbContextFactory.GetCurrentThreadInstance(); //2.0 定义DbSet 对象 public DbSet_dbset; //3.0 在构造函数的初始化_dbset public BaseDAL() { _dbset = db.Set (); } #region 1.0 增 public virtual void Add(TEntity model) { //1.0 参数合法性验证 if (model == null) { throw new Exception("BaseRepository泛型类中,新增操作的实体不能为空"); } //2.0 进行新增操作 _dbset.Add(model); } #endregion #region 2.0 删 public virtual void Delete(TEntity model, bool isAddedDbContext) { //1.0 参数合法性验证 if (model == null) { throw new Exception("BaseRepository泛型类中,删除操作的实体不能为空"); } //2.0 进行删除逻辑处理 if (!isAddedDbContext) { _dbset.Attach(model); } _dbset.Remove(model); } #endregion #region 3.0 改 /// /// 编辑,约定model 是一个自定义的实体,没有追加到EF容器中的 /// /// public virtual void Edit(TEntity model, string[] propertyNames) { //0.0 关闭EF的实体属性合法性检查 db.Configuration.ValidateOnSaveEnabled= false; //1.0 参数合法性验证 if (model == null) { throw new Exception("BaseRepository泛型类中,编辑操作的实体不能为空"); } if (propertyNames == null || propertyNames.Length == 0) { throw new Exception("BaseRepository泛型类中,编辑操作的属性数组必须至少有一个值"); } //2.0 将model追加到EF容器中的 DbEntityEntry entry = db.Entry(model); entry.State = EntityState.Unchanged; foreach (var item in propertyNames) { entry.Property(item).IsModified = true; } } #endregion #region 4.0 查 /// /// 带条件查询 /// /// /// public virtual List QueryWhere(Expression bool>> where) { return _dbset.Where(where).ToList(); } #endregion #region 5.0 统一保存 /// /// 统一将EF容器对象中的所有代理类生成相应的sql语句发给db服务器执行 /// /// public virtual int SaveChanges() { try { return db.SaveChanges(); } catch (Exception ex) { throw ex; } } #endregion }
public interface IBaseBLLwhere TEntity : class { #region 1.0 增 void Add(TEntity model); #endregion #region 2.0 删 void Delete(TEntity model, bool isAddedDbContext); #endregion #region 3.0 改 /// /// 编辑,约定model 是一个自定义的实体,没有追加到EF容器中的 /// /// void Edit(TEntity model, string[] propertyNames); #endregion #region 4.0 查 /// /// 带条件查询 /// /// /// List QueryWhere(Expression bool>> where); #endregion #region 5.0 统一保存 /// /// 统一将EF容器对象中的所有代理类生成相应的sql语句发给db服务器执行 /// /// int SaveChanges(); #endregion }
public class BaseBLL: IBaseBLL where TEntity : class { protected IBaseDAL dal = null; #region 1.0 增 public virtual void Add(TEntity model) { dal.Add(model); } #endregion #region 2.0 删 public virtual void Delete(TEntity model, bool isAddedDbContext) { dal.Delete(model, isAddedDbContext); } #endregion #region 3.0 改 /// /// 编辑,约定model 是一个自定义的实体,没有追加到EF容器中的 /// /// public virtual void Edit(TEntity model, string[] propertyNames) { dal.Edit(model, propertyNames); } #endregion #region 4.0 查 /// /// 带条件查询 /// /// /// public virtual List QueryWhere(Expression bool>> where) { return dal.QueryWhere(where); } #endregion #region 5.0 统一保存 /// /// 统一将EF容器对象中的所有代理类生成相应的sql语句发给db服务器执行 /// /// public virtual int SaveChanges() { return dal.SaveChanges(); } #endregion }
public class User_BLL : BaseBLL, IUser_BLL { IUser_DAL dalSer; public User_BLL(IUser_DAL dalSer) { base.dal = dalSer; this.dalSer = dalSer; } }
至此,基础部分建立完毕,接下来建立ui层内容
代码:
public class AutoFacConfig { ////// 负责调用autofac框架实现业务逻辑层和数据仓储层程序集中的类型对象的创建 /// 负责创建MVC控制器类的对象(调用控制器中的有参构造函数),接管DefaultControllerFactory的工作 /// public static void Register() { //实例化一个autofac的创建容器 var builder = new ContainerBuilder(); //告诉Autofac框架,将来要创建的控制器类存放在哪个程序集 (IOCtsX.UI) Assembly cOntrollerAss= Assembly.Load("IOCtsX.UI"); builder.RegisterControllers(controllerAss); //告诉autofac框架注册数据仓储层所在程序集中的所有类的对象实例 Assembly respAss = Assembly.Load("IOCtsX.IDAL"); //创建respAss中的所有类的instance以此类的实现接口存储 builder.RegisterTypes(respAss.GetTypes()).AsImplementedInterfaces(); //告诉autofac框架注册业务逻辑层所在程序集中的所有类的对象实例 Assembly serpAss = Assembly.Load("IOCtsX.BLL"); //创建serAss中的所有类的instance以此类的实现接口存储 builder.RegisterTypes(serpAss.GetTypes()).AsImplementedInterfaces(); //创建一个Autofac的容器 var cOntainer= builder.Build(); //将MVC的控制器对象实例 交由autofac来创建 DependencyResolver.SetResolver(new AutofacDependencyResolver(container)); } }
最后查看数据库
【最后附上关于autofac的几点疑惑】
1因为在ui层的App_Start下的AutoFacConfig.cs需要,所以ui层必须引用bll层和dal层,这和三层的理念有些差异。因为三层中ui层并不需要引入dal层。
【结尾说明,关于了解autofac花掉的时间说长也长说短也短。原本以为在博客园、csdn上面找一找就能马上得到一个可以运行的demo,但是很多博主都是按照自己的理解去写,在博文中或多或少会掉一些内容,这些内容对于博主和一些大牛来说是可以忽略不计的,因此博文只需要核心代码就可以,但是对于我这种萌新来说简直是灾难级别的,因为跟着博主敲打代码过程中时长因为缺点什么而无法运行,自己也不知道错误在哪。因此不得不敲到一半立马换下一个。导致效率低下。所以在写这个博文的过程中。我尽量将每一个细节全部罗列出来,以免像我这样的小白看不懂。照着这个流程讲代码敲出来并且运行时没什么大问题的。因为我每敲完一处就写一点。最后将代码运行完毕,才敢上传。如果各位看官觉得有什么问题可以在下方留言】
【如果需要代码可以去此下载,当然懒人也需要一点付出(csdn 3积分)。博主希望大家尽量多动手,多理解。不要像我之前一样只需要demo从不看文章导致后来吃了许多亏】