BLL.cmt 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName);
  6. string DALSpace= host.NameSpace+".DAL."+ host.GetDALClass(host.TableName);
  7. ColumnInfo identityKey=host.IdentityKey;
  8. string returnValue = "void";
  9. if (identityKey!=null)
  10. {
  11. returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName);
  12. }
  13. #>
  14. using System;
  15. using System.Data;
  16. using System.Collections.Generic;
  17. using Maticsoft.Common;
  18. using Maticsoft.Model;
  19. using Maticsoft.DALFactory;
  20. using Maticsoft.IDAL;
  21. namespace <#= host.NameSpace #>.BLL <# if( host.Folder.Length > 0){ #>.<#= host.Folder #><# } #>
  22. {
  23. <# if( host.TableDescription.Length > 0) {#>
  24. //<#= host.TableDescription #>
  25. <# } #>
  26. public partial class <#= host.GetBLLClass(host.TableName) #>
  27. {
  28. private readonly I<#= host.GetBLLClass(host.TableName) #> dal=DataAccess.Create<#= host.GetBLLClass(host.TableName) #>();
  29. public <#= host.GetBLLClass(host.TableName) #>()
  30. {}
  31. #region Method
  32. /// <summary>
  33. /// 是否存在该记录
  34. /// </summary>
  35. public bool Exists(<#= CodeCommon.GetInParameter(host.Keys, false) #>)
  36. {
  37. return dal.Exists(<#= CodeCommon.GetFieldstrlist(host.Keys, false)#>);
  38. }
  39. /// <summary>
  40. /// 增加一条数据
  41. /// </summary>
  42. public <#= returnValue #> Add(<#= ModelSpace #> model)
  43. {
  44. <#if (identityKey!=null) {#>return dal.Add(model);
  45. <#} else {#>dal.Add(model);
  46. <#}#>
  47. }
  48. /// <summary>
  49. /// 更新一条数据
  50. /// </summary>
  51. public bool Update(<#= ModelSpace #> model)
  52. {
  53. return dal.Update(model);
  54. }
  55. /// <summary>
  56. /// 删除一条数据
  57. /// </summary>
  58. public bool Delete(<#=CodeCommon.GetInParameter(host.Keys, true)#>)
  59. {
  60. return dal.Delete(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  61. }
  62. <#if (identityKey!=null) {#>
  63. /// <summary>
  64. /// 批量删除一批数据
  65. /// </summary>
  66. public bool DeleteList(string <#=identityKey.ColumnName#>list )
  67. {
  68. return dal.DeleteList(<#=identityKey.ColumnName#>list );
  69. }
  70. <#}#>
  71. /// <summary>
  72. /// 得到一个对象实体
  73. /// </summary>
  74. public <#= ModelSpace #> GetModel(<#= CodeCommon.GetInParameter(host.Keys,true) #>)
  75. {
  76. return dal.GetModel(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  77. }
  78. /// <summary>
  79. /// 得到一个对象实体,从缓存中
  80. /// </summary>
  81. public <#= ModelSpace #> GetModelByCache(<#= CodeCommon.GetInParameter(host.Keys,true) #>)
  82. {
  83. string CacheKey = "<#= host.TableName #>Model-" + <#=CodeCommon.GetFieldstrlistAdd(host.Keys, true)#>;
  84. object objModel = Maticsoft.Common.DataCache.GetCache(CacheKey);
  85. if (objModel == null)
  86. {
  87. try
  88. {
  89. objModel = dal.GetModel(<#=CodeCommon.GetFieldstrlist(host.Keys, true)#>);
  90. if (objModel != null)
  91. {
  92. int ModelCache = Maticsoft.Common.ConfigHelper.GetConfigInt("ModelCache");
  93. Maticsoft.Common.DataCache.SetCache(CacheKey, objModel, DateTime.Now.AddMinutes(ModelCache), TimeSpan.Zero);
  94. }
  95. }
  96. catch{}
  97. }
  98. return (<#= ModelSpace #>)objModel;
  99. }
  100. /// <summary>
  101. /// 获得数据列表
  102. /// </summary>
  103. public DataSet GetList(string strWhere)
  104. {
  105. return dal.GetList(strWhere);
  106. }
  107. /// <summary>
  108. /// 获得前几行数据
  109. /// </summary>
  110. public DataSet GetList(int Top,string strWhere,string filedOrder)
  111. {
  112. return dal.GetList(Top,strWhere,filedOrder);
  113. }
  114. /// <summary>
  115. /// 获得数据列表
  116. /// </summary>
  117. public List<<#= ModelSpace #>> GetModelList(string strWhere)
  118. {
  119. DataSet ds = dal.GetList(strWhere);
  120. return DataTableToList(ds.Tables[0]);
  121. }
  122. /// <summary>
  123. /// 获得数据列表
  124. /// </summary>
  125. public List<<#= ModelSpace #>> DataTableToList(DataTable dt)
  126. {
  127. List<<#= ModelSpace #>> modelList = new List<<#= ModelSpace #>>();
  128. int rowsCount = dt.Rows.Count;
  129. if (rowsCount > 0)
  130. {
  131. <#= ModelSpace #> model;
  132. for (int n = 0; n < rowsCount; n++)
  133. {
  134. model = new <#= ModelSpace #>();
  135. <# foreach (ColumnInfo c in host.Fieldlist) { #>
  136. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="int"||
  137. CodeCommon.DbTypeToCS(c.TypeName)=="long"||
  138. CodeCommon.DbTypeToCS(c.TypeName)=="float"||
  139. CodeCommon.DbTypeToCS(c.TypeName)=="DateTime"||
  140. CodeCommon.DbTypeToCS(c.TypeName)=="decimal")
  141. {#>if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  142. {
  143. model.<#=c.ColumnName#>=<#=CodeCommon.DbTypeToCS(c.TypeName)#>.Parse(dt.Rows[n]["<#=c.ColumnName#>"].ToString());
  144. }
  145. <# } #><# if(CodeCommon.DbTypeToCS(c.TypeName)=="string") {#>
  146. model.<#=c.ColumnName#>= dt.Rows[n]["<#=c.ColumnName#>"].ToString();
  147. <# } #>
  148. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="byte[]") {#>
  149. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  150. {
  151. model.<#=c.ColumnName#>= (byte[])dt.Rows[n]["<#=c.ColumnName#>"];
  152. }
  153. <# } #>
  154. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="Guid") {#>
  155. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  156. {
  157. model.<#=c.ColumnName#>= dt.Rows[n]["<#=c.ColumnName#>"].ToString();
  158. }
  159. <# } #>
  160. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="bool") {#>
  161. if(dt.Rows[n]["<#=c.ColumnName#>"].ToString()!="")
  162. {
  163. if((dt.Rows[n]["<#=c.ColumnName#>"].ToString()=="1")||(dt.Rows[n]["<#=c.ColumnName#>"].ToString().ToLower()=="true"))
  164. {
  165. model.<#=c.ColumnName#>= true;
  166. }
  167. else
  168. {
  169. model.<#=c.ColumnName#>= false;
  170. }
  171. }
  172. <# } #>
  173. <# } #>
  174. modelList.Add(model);
  175. }
  176. }
  177. return modelList;
  178. }
  179. /// <summary>
  180. /// 获得数据列表
  181. /// </summary>
  182. public DataSet GetAllList()
  183. {
  184. return GetList("");
  185. }
  186. #endregion
  187. }
  188. }