小編給大家分享一下ASP.NET MVC5網(wǎng)站開發(fā)之業(yè)務(wù)邏輯層架構(gòu)和基本功能的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)公司:2013年開創(chuàng)至今為各行業(yè)開拓出企業(yè)自己的“網(wǎng)站建設(shè)”服務(wù),為成百上千公司企業(yè)提供了專業(yè)的成都網(wǎng)站制作、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計和網(wǎng)站推廣服務(wù), 按需規(guī)劃網(wǎng)站由設(shè)計師親自精心設(shè)計,設(shè)計的效果完全按照客戶的要求,并適當(dāng)?shù)奶岢龊侠淼慕ㄗh,擁有的視覺效果,策劃師分析客戶的同行競爭對手,根據(jù)客戶的實際情況給出合理的網(wǎng)站構(gòu)架,制作客戶同行業(yè)具有領(lǐng)先地位的。業(yè)務(wù)邏輯層在Ninesky.Core中實現(xiàn),主要功能封裝一些方法通過調(diào)用數(shù)據(jù)存儲層,向界面層提供服務(wù)。
一、業(yè)務(wù)邏輯層的架構(gòu)
Ninesky.Core包含三個命名空間Ninesky.Core、Ninesky.Core.Types、Ninesky.Core.General.
Ninesky.Core包含模型和功能實現(xiàn),Ninesky.Core.Types是項目用到的一些類型的定義,Ninesky.Core.General是項目用到的一些方法的定義。
1、Ninesky.Core命名空間的結(jié)構(gòu)
NineskyContext-數(shù)據(jù)上下文
ContextFactory- 獲取數(shù)據(jù)上下文的工廠類
BaseManager-基礎(chǔ)類,實現(xiàn)了一些常用數(shù)據(jù)訪問方法,提供其他管理類繼承。
Category-欄目模型。
CategoryManager-欄目管理類。
Content-內(nèi)容模型。
ContentManager-內(nèi)容管理類。
User-用戶模型
UserManager-用戶管理類
Administrator-管理員類
AdministratorManager-管理員管理類
2、Ninesky.Core.Types命名空間的結(jié)構(gòu)
Response 響應(yīng)返回類。
Paging
二、基礎(chǔ)功能的實現(xiàn)
1、添加引用
(1)、添加EntityFramewok 引用
Ninesky.Core項目->引用【右鍵】 –>管理NuGet程序包
在NuGet包管理對器話框中選擇 EntityFramewok 并安裝。
(2)、添加Ninesky.DataLibrary項目的引用
Ninesky.Core項目->引用【右鍵】 –>添加引用
在引用管理器中選擇 項目->解決方案->Ninesky.DataLibrary,點擊確定。
2、NineskyContext類
NineskyContext類是項目的數(shù)據(jù)數(shù)據(jù)上下文,使模型和數(shù)據(jù)庫的表進行對應(yīng)。
Ninesky.Core項目【右鍵】->添加->類, 輸入類名NineskyContext。
在類中引入命名空間System.Data.Entity;
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.Entity; namespace Ninesky.Core { public class NineskyContext:DbContext { public NineskyContext():base("DefaultConnection") { Database.SetInitializer(new CreateDatabaseIfNotExists ()); } } }
3、ContextFactory類
ContextFactory是一個簡單工廠類,CurrentContext()是一個靜態(tài)函數(shù),用來獲取當(dāng)前線程DbContext。
Ninesky.Core項目【右鍵】->添加->類, 輸入類名ContextFactory。
在類中添加對System.Runtime.Remoting.Messaging的引用。在類中實現(xiàn)CurrentContext()靜態(tài)方法返回數(shù)據(jù)上下文NineskyContext。方法中通過CallContext類在線程中存儲NineskyContext。
using System.Runtime.Remoting.Messaging; namespace Ninesky.Core { ////// 數(shù)據(jù)上下文工廠 /// public class ContextFactory { ////// 獲取當(dāng)前線程的數(shù)據(jù)上下文 /// ///數(shù)據(jù)上下文 public static NineskyContext CurrentContext() { NineskyContext _nContext = CallContext.GetData("NineskyContext") as NineskyContext; if (_nContext == null) { _nContext = new NineskyContext(); CallContext.SetData("NineskyContext", _nContext); } return _nContext; } } }
4、Response類
Response類是一個常用的方法返回數(shù)據(jù)類型,包含返回代碼、返回消息和返回數(shù)據(jù)3個屬性。
在Ninesky.Core項目[右鍵]新建文件夾,輸入名稱Types。
在Types文件夾[右鍵]->添加->類,在彈出的添加新項對話框中輸入類名Response。代碼如下:
namespace Ninesky.Core.Types { ////// /// public class Response { ////// 返回代碼. 0-失敗,1-成功,其他-具體見方法返回值說明 /// public int Code { get; set; } ////// 返回消息 /// public string Message { get; set; } ////// 返回數(shù)據(jù) /// public dynamic Data { get; set; } public Response() { Code = 0; } } }
5、Paging
Paging
在Types文件夾[右鍵]->添加->類,在彈出的添加新項對話框中輸入類名Paging。代碼如下:
using System.Collections.Generic; namespace Ninesky.Core.Types { public class Paging{ /// /// 當(dāng)前頁。從1計數(shù) /// public int PageIndex { get; set; } ////// 每頁記錄數(shù)。默認(rèn)20 /// public int PageSize { get; set; } ////// 總記錄數(shù) /// public int TotalNumber;////// 當(dāng)前頁記錄列表 /// public ListItems { get; set; } public Paging() { PageIndex = 1; PageSize = 20; } } }
6、BaseManager類
BaseManager類是所有管理類的基類,此類包含了管理類的常用方法。
將Ninesky.Core項目的Class1.cs重命名為BaseManager.cs
引入命名空間System.Data.Entity和Ninesky.Core.Types,實現(xiàn)共有方法。
using Ninesky.Core.Types; using Ninesky.DataLibrary; using System.Data.Entity; using System.Linq; namespace Ninesky.Core { ////// 管理類的基類 /// ///模型類 public abstract class BaseManagerwhere T :class { /// /// 數(shù)據(jù)倉儲類 /// protected RepositoryRepository; /// /// 默認(rèn)構(gòu)造函數(shù) /// public BaseManager():this(ContextFactory.CurrentContext()) { } ////// 構(gòu)造函數(shù) /// /// 數(shù)據(jù)上下文 public BaseManager(DbContext dbContext){ Repository = new Repository(dbContext); } /// /// 添加 /// /// 實體數(shù)據(jù) ///成功時屬性【Data】為添加后的數(shù)據(jù)實體 public virtual Response Add(T entity) { Response _response = new Response(); if(Repository.Add(entity)>0) { _response.Code = 1; _response.Message = "添加數(shù)據(jù)成功!"; _response.Data = entity; } else { _response.Code = 0; _response.Message = "添加數(shù)據(jù)失??!"; } return _response; } ////// 更新 /// /// 實體數(shù)據(jù) ///成功時屬性【Data】為更新后的數(shù)據(jù)實體 public virtual Response Update(T entity) { Response _response = new Response(); if (Repository.Update(entity) > 0) { _response.Code = 1; _response.Message = "更新數(shù)據(jù)成功!"; _response.Data = entity; } else { _response.Code = 0; _response.Message = "更新數(shù)據(jù)失??!"; } return _response; } ////// 刪除 /// /// 主鍵 ///Code:0-刪除失敗;1-刪除陳功;10-記錄不存在 public virtual Response Delete(int ID) { Response _response = new Response(); var _entity = Find(ID); if (_entity == null) { _response.Code = 10; _response.Message = "記錄不存在!"; } else { if (Repository.Delete(_entity) > 0) { _response.Code = 1; _response.Message = "刪除數(shù)據(jù)成功!"; } else { _response.Code = 0; _response.Message = "刪除數(shù)據(jù)失敗!"; } } return _response; } ////// 查找實體 /// /// 主鍵 ///實體 public virtual T Find(int ID) { return Repository.Find(ID); } ////// 查找數(shù)據(jù)列表-【所有數(shù)據(jù)】 /// ///所有數(shù)據(jù) public IQueryableFindList() { return Repository.FindList(); } /// /// 查找分頁數(shù)據(jù) /// /// 分頁數(shù)據(jù) ///分頁數(shù)據(jù) public PagingFindPageList(Paging paging) { paging.Items = Repository.FindPageList(paging.PageSize, paging.PageIndex, out paging.TotalNumber).ToList(); return paging; } /// /// 總記錄數(shù) /// ///總記錄數(shù) public virtual int Count() { return Repository.Count(); } } }
以上是“ASP.NET MVC5網(wǎng)站開發(fā)之業(yè)務(wù)邏輯層架構(gòu)和基本功能的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!