在上篇隨筆《Entity Framework 實(shí)體框架的形成之旅--數(shù)據(jù)傳輸模型DTO和實(shí)體模型Entity的分離與聯(lián)合》里面笤受,介紹了在Entity Framework 實(shí)體框架里面引入了DTO的對象,通過數(shù)據(jù)傳輸模型DTO和實(shí)體模型Entity的分離與聯(lián)合倘潜,很好的隔離了它們的關(guān)系博烂,使得即使是復(fù)雜的實(shí)體模型Entity绒瘦,也不會影響WCF接口數(shù)據(jù)的傳輸和處理涛碑。本文主要介紹在基于這個分離模型的基礎(chǔ)上壁袄,如何在界面實(shí)現(xiàn)多種常規(guī)的處理操作。
1豆混、常規(guī)業(yè)務(wù)的增加篓像、更新操作
對于業(yè)務(wù)對象的增加,由于我們引入了DTO對象皿伺,因此在界面的處理端员辩,肯定也是利用了DTO對象進(jìn)行的,如下代碼是增加鸵鸥、修改的處理操作處理奠滑。
public bool SaveAddNew()
{
DictDataInfo info = new DictDataInfo();
SetInfo(info);
try
{
bool succeed = CallerFactory<IDictDataService>.Instance.Insert(info);
if (succeed)
{
int intSeq = 0;
string seqValue = this.txtSeq.Text;
if (int.TryParse(seqValue, out intSeq))
{
this.txtSeq.Text = (intSeq + 1).ToString().PadLeft(seqValue.Trim().Length, '0');
}
this.txtName.Focus();
this.txtName.SelectAll();
}
return succeed;
}
catch (Exception ex)
{
LogTextHelper.Error(ex);
MessageDxUtil.ShowError(ex.Message);
}
return false;
}
public override bool SaveUpdated()
{
DictDataInfo info = CallerFactory<IDictDataService>.Instance.FindByID(ID);
if (info != null)
{
SetInfo(info);
try
{
bool succeed = CallerFactory<IDictDataService>.Instance.Update(info, info.ID.ToString());
return succeed;
}
catch (Exception ex)
{
LogTextHelper.Error(ex);
MessageDxUtil.ShowError(ex.Message);
}
}
return false;
}
上面的操作,和我之前的混合框架的使用代碼是差不多的妒穴,原來的基于EnterpriseLibrary架構(gòu)的框架宋税,實(shí)體類采用的就是 "表名+Info" 的方式,雖然這里的**Info代表DTO對象讼油,是實(shí)體框架的Entity對象的映射類杰赛,不過總體業(yè)務(wù)上的處理代碼是差不多的了,這也是我希望看到比較平滑過渡和容易理解的改變之一矮台。
2乏屯、基于DTO表達(dá)式的查詢處理
如果對于查詢根时,我們知道,如果使用字符串的條件表達(dá)式辰晕,一般也是可以實(shí)現(xiàn)處理操作的蛤迎,不過就是需要硬編碼SQL語句,對于一些安全性高一點(diǎn)的處理含友,可能不太好替裆,由于實(shí)體框架可以采用Lamda表達(dá)式來進(jìn)行查詢,那么我們是否也可以在界面采用Lamda表達(dá)式來替代條件的SQL語句呢窘问?
我們知道辆童,上篇隨筆已經(jīng)介紹了引入DTO對象,用來解耦實(shí)體框架的對象模型南缓,如下所示的模塊分層場景胸遇。
這樣我們在設(shè)計BLL業(yè)務(wù)邏輯層的時候,肯定還是可以使用實(shí)體框架的Expression<Func<T, bool>>表達(dá)式的汉形,如IBLL層的接口定義對于Expression表達(dá)式的使用接口如下所示纸镊。
/// <summary>
/// 根據(jù)條件查詢數(shù)據(jù)庫,并返回對象集合
/// </summary>
/// <param name="match">條件表達(dá)式</param>
/// <returns></returns>
IList<T> Find(Expression<Func<T, bool>> match);
/// <summary>
/// 根據(jù)條件表達(dá)式返回可查詢的記錄源
/// </summary>
/// <param name="match">查詢條件</param>
/// <param name="sortPropertyName">排序?qū)傩悦Q</param>
/// <param name="isDescending">如果為true則為降序,否則為升序</param>
/// <returns></returns>
IQueryable<T> GetQueryable(Expression<Func<T, bool>> match, string sortPropertyName, bool isDescending = true);
不過在門面層Facade層就不能繼續(xù)使用了這種Expression<Func<T, bool>>表達(dá)式的了概疆,同時也不能在Facade層使用IQueryable<T>接口逗威,因?yàn)閃CF服務(wù)無法序列化這個接口的。
那基于這個原因岔冀,我們應(yīng)該如何傳遞Expression<Func<T, bool>> match這個條件參數(shù)的表達(dá)式呢凯旭,答案是引入Serialize.Linq組件,使用ExpressionNode對象進(jìn)行承載使套,最后再把它解析為Expression<Func<T, bool>> match進(jìn)行處理就可以了罐呼。
/// <summary>
/// 根據(jù)條件查詢數(shù)據(jù)庫,并返回對象集合
/// </summary>
/// <param name="match">條件表達(dá)式</param>
/// <returns></returns>
[OperationContract(Name = "Find")]
IList<DTO> Find(ExpressionNode match);
/// <summary>
/// 根據(jù)條件查詢數(shù)據(jù)庫,并返回對象集合(異步)
/// </summary>
/// <param name="match">條件表達(dá)式</param>
/// <returns></returns>
[OperationContract(Name = "FindAsync")]
Task<IList<DTO>> FindAsync(ExpressionNode match);
我們在客戶端界面里面處理的話,就需要構(gòu)建一個ExpressionNode對象侦高,查詢處理代碼如下所示嫉柴。
這里主要需要先從Expression<Function<T,boo>>到ExpressionNode,通過調(diào)用expression.ToExpressionNode();進(jìn)行處理得到奉呛,如下代碼所示计螺。
private ExpressionNode GetCondtionSql()
{
Expression<Func<DictDataInfo, bool>> expression = p => p.DictType_ID == this.lblDictType.Tag.ToString();
var queryNode = expression.ToExpressionNode();
return queryNode;
}
private void BindData()
{
#region 添加別名解析
this.winGridViewPager1.DisplayColumns = "Name,Value,Seq,Remark,EditTime";
this.winGridViewPager1.AddColumnAlias("ID", "編號");
this.winGridViewPager1.AddColumnAlias("DictType_ID", "字典大類");
this.winGridViewPager1.AddColumnAlias("Name", "項(xiàng)目名稱");
this.winGridViewPager1.AddColumnAlias("Value", "項(xiàng)目值");
this.winGridViewPager1.AddColumnAlias("Seq", "字典排序");
this.winGridViewPager1.AddColumnAlias("Remark", "備注");
this.winGridViewPager1.AddColumnAlias("Editor", "修改用戶");
this.winGridViewPager1.AddColumnAlias("EditTime", "更新日期");
#endregion
if (this.lblDictType.Tag != null)
{
ExpressionNode condition = GetCondtionSql();
WHC.Pager.Entity.PagerInfo pagerInfo = this.winGridViewPager1.PagerInfo;
IList<DictDataInfo> list = CallerFactory<IDictDataService>.Instance.FindWithPager(condition, ref pagerInfo);
//this.winGridViewPager1.PagerInfo.RecordCount = pagerInfo.RecordCount;
this.winGridViewPager1.DataSource = new WHC.Pager.WinControl.SortableBindingList<DictDataInfo>(list);
}
}
我們在Facade接口實(shí)現(xiàn)端,就需要把ExpressionNode反過來變成Expression<Function<T,boo>>對象瞧壮。
/// <summary>
/// 根據(jù)條件查詢數(shù)據(jù)庫,并返回對象集合
/// </summary>
/// <param name="match">條件表達(dá)式</param>
/// <returns></returns>
public virtual IList<DTO> Find(ExpressionNode match)
{
Expression<Func<Entity, bool>> mappedSelector = ConvertExpression(match);
IList<Entity> tList = baseBLL.Find(mappedSelector);
return tList.MapToList<Entity, DTO>();
}
/// <summary>
/// 根據(jù)條件查詢數(shù)據(jù)庫,并返回對象集合(異步)
/// </summary>
/// <param name="match">條件表達(dá)式</param>
/// <returns></returns>
public virtual async Task<IList<DTO>> FindAsync(ExpressionNode match)
{
Expression<Func<Entity, bool>> mappedSelector = ConvertExpression(match);
IList<Entity> tList = await baseBLL.FindAsync(mappedSelector);
IList<DTO> collection = tList.MapToList<Entity, DTO>();
return await Task<IList<DTO>>.FromResult(collection);
}
這樣我們就可以很好利用Entity Framework 實(shí)體框架的LINQ表達(dá)式進(jìn)行查詢了登馒。
3、多條件的處理方式
上面的查詢代碼里面咆槽,我們注意到了陈轿,條件里面只有一個條件,如下代碼。
private ExpressionNode GetCondtionSql()
{
Expression<Func<DictDataInfo, bool>> expression = p => p.DictType_ID == this.lblDictType.Tag.ToString();
var queryNode = expression.ToExpressionNode();
return queryNode;
}
那么對于有多個條件的話济欢,處理就需要特殊處理了赠堵,否則就沒法組合多個條件進(jìn)行查詢了小渊,多個條件的處理是如何的呢法褥?
如對于日志查詢界面來說,如果是采用條件語句的方式酬屉,需要使用下面的代碼組裝語句半等,然后通過接口方法進(jìn)行獲取數(shù)據(jù)。
/// <summary>
/// 根據(jù)查詢條件構(gòu)造查詢語句
/// </summary>
private string GetConditionSql()
{
SearchCondition condition = new SearchCondition();
condition.AddCondition("LoginName", this.txtLoginName.Text, SqlOperator.Like);
condition.AddCondition("FullName", this.txtRealName.Text, SqlOperator.Like);
condition.AddCondition("Note", this.txtNote.Text, SqlOperator.Like);
condition.AddCondition("IPAddress", this.txtIPAddress.Text, SqlOperator.Like);
condition.AddCondition("MacAddress", this.txtMacAddress.Text, SqlOperator.Like);
if (dateTimePicker1.Text.Length > 0)
{
condition.AddCondition("LastUpdated", Convert.ToDateTime(dateTimePicker1.DateTime.ToString("yyyy-MM-dd")), SqlOperator.MoreThanOrEqual);
}
if (dateTimePicker2.Text.Length > 0)
{
condition.AddCondition("LastUpdated", Convert.ToDateTime(dateTimePicker2.DateTime.AddDays(1).ToString("yyyy-MM-dd")), SqlOperator.LessThanOrEqual);
}
string systemType = this.txtSystemType.GetComboBoxValue();
if (!string.IsNullOrEmpty(systemType))
{
condition.AddCondition("SystemType_ID", systemType, SqlOperator.Equal);
}
//如果是公司管理員呐萨,增加公司標(biāo)識
if (Portal.gc.UserInRole(RoleInfo.CompanyAdminName))
{
condition.AddCondition("Company_ID", Portal.gc.UserInfo.Company_ID, SqlOperator.Equal);
}
string where = condition.BuildConditionSql().Replace("Where", "");
//如果是單擊節(jié)點(diǎn)得到的條件杀饵,則使用樹列表的,否則使用查詢條件的
if (!string.IsNullOrEmpty(treeConditionSql))
{
where = treeConditionSql;
}
return where;
}
這里有很多條件谬擦,通過 SearchCondition 對象切距,我們能夠很方便組合多個條件的查詢,然后生成所需的條件語句就可以了惨远,那么對于實(shí)體框架里面谜悟,我們需要采用Lamda表達(dá)式的話,應(yīng)該如何構(gòu)建對象并傳入給接口方法呢北秽,代碼如下所示葡幸。
/// <summary>
/// 根據(jù)查詢條件構(gòu)造查詢語句
/// </summary>
private ExpressionNode GetConditionSql()
{
Expression<Func<LoginLogInfo, bool>> expression = p => true;
if (!string.IsNullOrEmpty(this.txtLoginName.Text))
{
expression = expression.And(x => x.LoginName.Contains(this.txtLoginName.Text));
}
if (!string.IsNullOrEmpty(this.txtRealName.Text))
{
expression = expression.And(x => x.FullName.Contains(this.txtRealName.Text));
}
if (!string.IsNullOrEmpty(this.txtNote.Text))
{
expression = expression.And(x => x.Note.Contains(this.txtNote.Text));
}
if (!string.IsNullOrEmpty(this.txtIPAddress.Text))
{
expression = expression.And(x => x.IPAddress.Contains(this.txtIPAddress.Text));
}
if (!string.IsNullOrEmpty(this.txtMacAddress.Text))
{
expression = expression.And(x => x.MacAddress.Contains(this.txtMacAddress.Text));
}
if (dateTimePicker1.Text.Length > 0)
{
expression = expression.And(x => x.LastUpdated >= Convert.ToDateTime(dateTimePicker1.DateTime.ToString("yyyy-MM-dd")));
}
if (dateTimePicker2.Text.Length > 0)
{
expression = expression.And(x => x.LastUpdated <= Convert.ToDateTime(dateTimePicker2.DateTime.AddDays(1).ToString("yyyy-MM-dd")));
}
string systemType = this.txtSystemType.GetComboBoxValue();
if (!string.IsNullOrEmpty(systemType))
{
expression = expression.And(x => x.SystemType_ID == systemType);
}
//如果是公司管理員,增加公司標(biāo)識
if (Portal.gc.UserInRole(RoleInfo.CompanyAdminName))
{
expression = expression.And(x => x.Company_ID == Portal.gc.UserInfo.Company_ID);
}
//如果是單擊節(jié)點(diǎn)得到的條件贺氓,則使用樹列表的蔚叨,否則使用查詢條件的
if (treeCondition != null)
{
expression = treeCondition;
}
return expression.ToExpressionNode();
}
這里我們注意到expression.And或者expression.Or函數(shù),它不是這個expression對象的方法的辙培,是我們針對這個做的一個擴(kuò)展類函數(shù)蔑水,它專門處理 Lamda-Expression表達(dá)式的擴(kuò)展,方便組合多個條件扬蕊,如兩個表達(dá)式條件可以組合為AND或者OR條件方式搀别。
這樣我們在界面處理的時候,綁定數(shù)據(jù)的處理方法就可以如下所示了厨相。
public void BindData()
{
#region 添加別名解析
this.winGridViewPager1.DisplayColumns = "ID,User_ID,LoginName,FullName,Company_ID,CompanyName,Note,IPAddress,MacAddress,SystemType_ID,LastUpdated";
this.winGridViewPager1.ColumnNameAlias = CallerFactory<ILoginLogService>.Instance.GetColumnNameAlias();//字段列顯示名稱轉(zhuǎn)義
#endregion
ExpressionNode where = GetConditionSql();
PagerInfo PagerInfo = this.winGridViewPager1.PagerInfo;
IList<LoginLogInfo> list = CallerFactory<ILoginLogService>.Instance.FindWithPager(where, ref PagerInfo);
this.winGridViewPager1.DataSource = new WHC.Pager.WinControl.SortableBindingList<LoginLogInfo>(list);
}
以上就是我對于混合型的Entity Framework 實(shí)體框架的界面操作领曼,總結(jié)的幾種分析場景,希望對大家理解在WCF模式里面蛮穿,使用實(shí)體框架的方法有所幫助庶骄。