這篇文章主要介紹MVC項目結(jié)構(gòu)搭建及單個類如何實現(xiàn),文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為天峨企業(yè)提供專業(yè)的網(wǎng)站設計、成都做網(wǎng)站,天峨網(wǎng)站改版等技術服務。擁有10多年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。先來一張項目的層級結(jié)構(gòu)圖:
Model:模型層,主要是各種類型、枚舉以及ORM框架,框架完成數(shù)據(jù)庫和實體類的映射。項目中選用了微軟的開源ORM框架 EntityFramework 6.0 (以下簡稱EF),數(shù)據(jù)庫則選擇了微軟的輕量級數(shù)據(jù)庫SQL Server Compact 4.0本地數(shù)據(jù)庫(簡稱Compact),Compact對EF支持比較完美,又屬于文檔型數(shù)據(jù)庫,部署起來比較簡潔。
DAL:數(shù)據(jù)訪問層,主要是對數(shù)據(jù)庫的操作層,為業(yè)務邏輯層或表示層提供數(shù)據(jù)服務。
IDAL:數(shù)據(jù)訪問接口層,是數(shù)據(jù)訪問層的接口,降低耦合。
DALFactory:數(shù)據(jù)會話層,封裝了所有數(shù)據(jù)操作類實例的創(chuàng)建,將數(shù)據(jù)訪問層與業(yè)務邏輯層解耦。
BLL:業(yè)務邏輯層,主要負責對數(shù)據(jù)層的操作,把一些數(shù)據(jù)層的操作進行組合以完成業(yè)務的需要。
IBLL:業(yè)務邏輯接口層,業(yè)務邏輯層的接口,降低耦合。
WebApp:表現(xiàn)層,是一個ASP.NET MVC項目,完成具體網(wǎng)站的實現(xiàn)。
Common:通用層,用來存放一些工具類。
下面是各個層級之間具體的實現(xiàn),首先創(chuàng)建以 項目名.層級名 命名的各個層次,除WebApp層為ASP.NET MVC項目外,其余均創(chuàng)建為類庫項目。
模型層的構(gòu)建
先建立模型層,新建ASP.NET 實體數(shù)據(jù)模型,關聯(lián)到已經(jīng)設計好的數(shù)據(jù)庫,EF自動完成模型類的創(chuàng)建。
數(shù)據(jù)訪問層的構(gòu)建
DAL層中,我們首先需要一個方法來獲取單例的EF數(shù)據(jù)操縱上下文對象,以保證每個用戶訪問時只有使用一個上下文對象對數(shù)據(jù)庫進行操作。
DbContextFactory.cs
using System.Data.Entity; using System.Runtime.Remoting.Messaging; using PMS.Model; namespace PMS.DAL { public class DbContextFactory { ////// 負責創(chuàng)建EF數(shù)據(jù)操作上下文實例,必須保證線程內(nèi) /// public static DbContext CreateContext() { DbContext dbContext = (DbContext)CallContext.GetData("dbContext"); if (dbContext != null) return dbContext; dbContext = new PMSEntities(); CallContext.SetData("dbContext", dbContext); return dbContext; } } }
為User類創(chuàng)建DAL層,實現(xiàn)查詢、分頁查詢、增加、刪除和修改這五個基本的方法:
UserDAL.cs
using System; using System.Data.Entity; using System.Linq; using PMS.IDAL; namespace PMS.DAL { public partial class UserDal { public DbContext DbEntities = DbContextFactory.CreateContext(); ////// 查詢過濾 /// /// 過濾條件Lambda表達式 ///實體集合 public IQueryableLoadEntities(System.Linq.Expressions.Expression > whereLamada) { return DbEntities.Set ().Where(whereLamada); } /// /// 分頁查詢 /// ///排序類型 /// 查詢的頁碼 /// 每頁顯示的數(shù)目 /// 符合條件的總行數(shù) /// 過濾條件Lambda表達式 /// 排序Lambda表達式 /// 排序方向 ///實體集合 public IQueryableLoadPageEntities (int pageIndex, int pageSize, out int totalCount, System.Linq.Expressions.Expression > whereLambda, System.Linq.Expressions.Expression > orderbyLambda, bool isAsc) { var temp = DbEntities.Set ().Where(whereLambda); totalCount = temp.Count(); temp = isAsc ? temp.OrderBy(orderbyLambda).Skip((pageIndex - 1) * pageSize).Take(pageSize) : temp.OrderByDescending(orderbyLambda).Skip((pageIndex - 1) * pageSize).Take(pageSize); return temp; } /// /// 刪除數(shù)據(jù) /// /// 待刪數(shù)據(jù) ///刪除結(jié)果 public bool DeleteEntity(UserDal entity) { DbEntities.Entry(entity).State = EntityState.Deleted; return true; } ////// 編輯數(shù)據(jù) /// /// 待編輯數(shù)據(jù) ///編輯結(jié)果 public bool EditEntity(UserDal entity) { DbEntities.Entry(entity).State = EntityState.Modified; return true; } ////// 添加數(shù)據(jù) /// /// 待添加數(shù)據(jù) ///已添加數(shù)據(jù) public UserDal AddEntity(UserDal entity) { entity = DbEntities.Set().Add(entity); return entity; } } }
注:這里的增刪改操作并不即時進行,而是在封裝在數(shù)據(jù)會話層中,以實現(xiàn)工作單元模式,提高數(shù)據(jù)庫的操作效率。
考慮到每個類都需要實現(xiàn)相同的數(shù)據(jù)操作,我們可以將以上方法封裝到一個泛型基類中,各類型只需要繼承泛型基類就可以實現(xiàn)以上方法:
BaseDal.cs
using System; using System.Data.Entity; using System.Linq; namespace PMS.DAL { public class BaseDalwhere T:class ,new() { public DbContext DbEntities = DbContextFactory.CreateContext(); /// /// 查詢過濾 /// /// 過濾條件Lambda表達式 ///實體集合 public IQueryableLoadEntities(System.Linq.Expressions.Expression > whereLamada) { return DbEntities.Set ().Where(whereLamada); } /// /// 分頁查詢 /// ///排序類型 /// 查詢的頁碼 /// 每頁顯示的數(shù)目 /// 符合條件的總行數(shù) /// 過濾條件Lambda表達式 /// 排序Lambda表達式 /// 排序方向 ///實體集合 public IQueryableLoadPageEntities (int pageIndex, int pageSize, out int totalCount, System.Linq.Expressions.Expression > whereLambda, System.Linq.Expressions.Expression > orderbyLambda, bool isAsc) { var temp = DbEntities.Set ().Where(whereLambda); totalCount = temp.Count(); temp = isAsc ? temp.OrderBy(orderbyLambda).Skip((pageIndex - 1) * pageSize).Take(pageSize) : temp.OrderByDescending(orderbyLambda).Skip((pageIndex - 1) * pageSize).Take(pageSize); return temp; } /// /// 刪除數(shù)據(jù) /// /// 待刪數(shù)據(jù) ///刪除結(jié)果 public bool DeleteEntity(T entity) { DbEntities.Entry(entity).State = EntityState.Deleted; return true; } ////// 編輯數(shù)據(jù) /// /// 待編輯數(shù)據(jù) ///編輯結(jié)果 public bool EditEntity(T entity) { DbEntities.Entry(entity).State = EntityState.Modified; return true; } ////// 添加數(shù)據(jù) /// /// 待添加數(shù)據(jù) ///已添加數(shù)據(jù) public T AddEntity(T entity) { entity = DbEntities.Set().Add(entity); //DbEntities.SaveChanges(); return entity; } } }
UserDal繼承BaseDal
using PMS.IDAL; using PMS.Model; namespace PMS.DAL { public partial class UserDal : BaseDal{ } }
數(shù)據(jù)訪問接口層的構(gòu)建
然后我們建立相應的IbaseDal接口和IUserDal接口,并且使UserDal類實現(xiàn)IUserDal接口
IBaseDal:
using System; using System.Linq; namespace PMS.IDAL { public interface IBaseDalwhere T:class,new() { IQueryable LoadEntities(System.Linq.Expressions.Expression > whereLamada); IQueryable LoadPageEntities (int pageIndex, int pageSize, out int totalCount, System.Linq.Expressions.Expression> whereLambda, System.Linq.Expressions.Expression > orderbyLambda, bool isAsc); bool DeleteEntity(T entity); bool EditEntity(T entity); T AddEntity(T entity); } }
IUserDal:
using PMS.Model; namespace PMS.IDAL { public partial interface IUserDal:IBaseDal{ } }
UserDal實現(xiàn)IUserDal接口:
public partial class UserDal : BaseDal
數(shù)據(jù)會話層的構(gòu)建
抽象工廠類AbstractFactory:
using System.Configuration; using System.Reflection; using PMS.IDAL; namespace PMS.DALFactory { public partial class AbstractFactory { //讀取保存在配置文件中的程序集名稱與命名空間名 private static readonly string AssemblyPath = ConfigurationManager.AppSettings["AssemblyPath"]; private static readonly string NameSpace = ConfigurationManager.AppSettings["NameSpace"]; ////// 獲取UserDal的實例 /// ///public static IUserDal CreateUserInfoDal() { var fullClassName = NameSpace + ".UserInfoDal"; return CreateInstance(fullClassName) as IUserDal; } /// /// 通過反射獲得程序集中某類型的實例 /// /// ///private static object CreateInstance(string className) { var assembly = Assembly.Load(AssemblyPath); return assembly.CreateInstance(className); } } }
數(shù)據(jù)會話類DbSession:
using System.Data.Entity; using PMS.IDAL; using PMS.DAL; namespace PMS.DALFactory { public partial class DbSession:IDbSession { public DbContext Db { get { return DbContextFactory.CreateContext(); } } private IUserDal _userDal; public IUserDal UserDal { get { return _userDal ?? (_userDal = AbstractFactory.CreateUserInfoDal()); } set { _userDal = value; } } ////// 工作單元模式,統(tǒng)一保存數(shù)據(jù) /// ///public bool SaveChanges() { return Db.SaveChanges() > 0; } } }
業(yè)務邏輯層的構(gòu)建
業(yè)務類基類BaseService
using System; using System.Linq; using System.Linq.Expressions; using PMS.DALFactory; using PMS.IDAL; namespace PMS.BLL { public abstract class BaseServicewhere T:class,new() { public IDbSession CurrentDbSession { get { return new DbSession(); } } public IBaseDal CurrentDal { get; set; } public abstract void SetCurrentDal(); public BaseService() { SetCurrentDal();//子類一定要實現(xiàn)抽象方法,以指明當前類的子類類型。 } /// /// 查詢過濾 /// /// ///public IQueryable LoadEntities(Expression > whereLambda) { return CurrentDal.LoadEntities(whereLambda); } /// /// 分頁 /// ////// /// /// /// /// /// /// public IQueryable LoadPageEntities (int pageIndex, int pageSize, out int totalCount, Expression> whereLambda, Expression > orderbyLambda, bool isAsc) { return CurrentDal.LoadPageEntities (pageIndex, pageSize, out totalCount, whereLambda, orderbyLambda, isAsc); } ////// 刪除 /// /// ///public bool DeleteEntity(T entity) { CurrentDal.DeleteEntity(entity); return CurrentDbSession.SaveChanges(); } /// /// 編輯 /// /// ///public bool EditEntity(T entity) { CurrentDal.EditEntity(entity); return CurrentDbSession.SaveChanges(); } /// /// 添加數(shù)據(jù) /// /// ///public T AddEntity(T entity) { CurrentDal.AddEntity(entity); CurrentDbSession.SaveChanges(); return entity; } } }
UserService類:
using PMS.IBLL; using PMS.Model; namespace PMS.BLL { public partial class UserService : BaseService{ public override void SetCurrentDal() { CurrentDal = CurrentDbSession.UserDal; } } }
業(yè)務邏輯接口層的構(gòu)建
直接建立對應的接口并使用UserService類實現(xiàn)IUserService接口
IBaseService接口:
using System; using System.Linq; using System.Linq.Expressions; using PMS.IDAL; namespace PMS.IBLL { public interface IBaseServicewhere T : class,new() { IDbSession CurrentDbSession { get; } IBaseDal CurrentDal { get; set; } void SetCurrentDal(); IQueryable LoadEntities(Expression > whereLambda); IQueryable LoadPageEntities (int pageIndex, int pageSize, out int totalCount, Expression> whereLambda, Expression > orderbyLambda, bool isAsc); bool DeleteEntity(T entity); bool EditEntity(T entity); T AddEntity(T entity); } }
IUserService接口:
using PMS.Model; namespace PMS.IBLL { public partial interface IUserService:IBaseService{ } }
使用UserService類實現(xiàn)IUserService接口:
public partial class UserService : BaseService
以上是“MVC項目結(jié)構(gòu)搭建及單個類如何實現(xiàn)”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!