DAL.cmt 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. string DbParaHead=host.DbParaHead;
  6. string DbParaDbType=host.DbParaDbType;
  7. string preParameter=host.preParameter;
  8. string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName);
  9. ColumnInfo identityKey=host.IdentityKey;
  10. string returnValue = "void";
  11. if (identityKey!=null)
  12. {
  13. returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName);
  14. }
  15. #>
  16. using System;
  17. using System.Text;
  18. using System.Data.SqlClient;
  19. using System.Collections.Generic;
  20. using System.Data;
  21. using Maticsoft.DBUtility;
  22. namespace <#= host.NameSpace #>.DAL
  23. <# if( host.Folder.Length > 0){ #>
  24. .<#= host.Folder #>
  25. <# } #>
  26. {
  27. <# if( host.TableDescription.Length > 0) {#>
  28. //<#= host.TableDescription #>
  29. <# } #>
  30. public partial class <#= host.GetDALClass(host.TableName) #>
  31. {
  32. public bool Exists(<#= CodeCommon.GetInParameter(host.Keys, false) #>)
  33. {
  34. StringBuilder strSql=new StringBuilder();
  35. strSql.Append("select count(1) from <#= host.TableName #>");
  36. strSql.Append(" where ");
  37. <# for(int i=0;i< host.Keys.Count;i++)
  38. { ColumnInfo key = host.Keys[i]; #>
  39. <# if (key.IsPrimaryKey || !key.IsIdentity)
  40. {#>
  41. strSql.Append(" <#= key.ColumnName#> = <#=preParameter#><#=key.ColumnName#> <# if (i< host.Keys.Count-1 ) {#>and <#}#> ");
  42. <#}#>
  43. <# }#>
  44. <#= CodeCommon.GetPreParameter(host.Keys, false, host.DbType) #>
  45. return <#= host.DbHelperName#>.Exists(strSql.ToString(),parameters);
  46. }
  47. /// <summary>
  48. /// 增加一条数据
  49. /// </summary>
  50. public <#= returnValue #> Add(<#= ModelSpace #> model)
  51. {
  52. StringBuilder strSql=new StringBuilder();
  53. strSql.Append("insert into <#= host.TableName #>(");
  54. strSql.Append("<# for(int i=0;i< host.Fieldlist.Count;i++) { ColumnInfo c = host.Fieldlist[i]; if (!c.IsIdentity) {#><#= c.ColumnName#><# if (i< host.Fieldlist.Count-1 ) {#>,<#}#><#}}#>");
  55. strSql.Append(") values (");
  56. strSql.Append("<# for(int i=0;i< host.Fieldlist.Count;i++) { ColumnInfo c = host.Fieldlist[i]; if (!c.IsIdentity) {#><#=preParameter#><#= c.ColumnName#><# if (i< host.Fieldlist.Count-1 ) {#>,<#}#><#}}#>");
  57. strSql.Append(") ");
  58. <#if (identityKey!=null) {#>strSql.Append(";select @@IDENTITY");<#}#>
  59. SqlParameter[] parameters = {
  60. <# for(int i=0;i< host.Fieldlist.Count;i++)
  61. {
  62. ColumnInfo c = host.Fieldlist[i];
  63. if(c.IsIdentity) continue;
  64. #>
  65. new SqlParameter("<#=preParameter#><#=c.ColumnName#>", SqlDbType.<#=CodeCommon.DbTypeLength(host.DbType, c.TypeName, c.Length)#>) <# if (i< host.Fieldlist.Count-1 ) {#>,<#}#>
  66. <# }#>
  67. };
  68. <# foreach (ColumnInfo c in host.Fieldlist) { if(c.IsIdentity) continue;#>
  69. parameters[<#= n #>].Value = <# if ("uniqueidentifier" == c.TypeName.ToLower()){#>Guid.NewGuid();<#} else {#>model.<#=c.ColumnName#>;<#} n=n+1; #>
  70. <# }#>
  71. <#if (identityKey!=null) {#>
  72. object obj = <#= host.DbHelperName#>.GetSingle(strSql.ToString(),parameters);
  73. if (obj == null)
  74. {
  75. return 0;
  76. }
  77. else
  78. {
  79. <# if ( returnValue=="int" )
  80. {#>
  81. return Convert.ToInt32(obj);
  82. <#}#>
  83. <# if ( returnValue=="long" )
  84. {#>
  85. return Convert.ToInt64(obj);
  86. <#}#>
  87. <# if ( returnValue=="decimal" )
  88. {#>
  89. return Convert.ToDecimal(obj);
  90. <#}#>
  91. }
  92. <#} else {#>
  93. <#= host.DbHelperName#>.ExecuteSql(strSql.ToString(),parameters);
  94. <#}#>
  95. }
  96. /// <summary>
  97. /// 更新一条数据
  98. /// </summary>
  99. public bool Update(<#= ModelSpace #> model)
  100. {
  101. StringBuilder strSql=new StringBuilder();
  102. strSql.Append("update <#= host.TableName #> set ");
  103. <# for(int i=0;i< host.Fieldlist.Count;i++)
  104. { ColumnInfo c = host.Fieldlist[i]; #>
  105. <# if (!c.IsIdentity) {#>
  106. strSql.Append(" <#= c.ColumnName #> = <#=preParameter#><#=c.ColumnName#> <# if (i< host.Fieldlist.Count-1 ) {#>,<#}#> ");<# }#>
  107. <# }#>
  108. strSql.Append(" where <#= CodeCommon.GetWhereParameterExpression(host.Keys, true ,host.DbType) #> ");
  109. SqlParameter[] parameters = {
  110. <# for(int i=0;i< host.Fieldlist.Count;i++)
  111. { ColumnInfo c = host.Fieldlist[i]; #>
  112. new SqlParameter("<#=preParameter#><#=c.ColumnName#>", SqlDbType.<#=CodeCommon.DbTypeLength(host.DbType, c.TypeName, c.Length)#>) <# if (i< host.Fieldlist.Count-1 ) {#>,<#}#>
  113. <# }#>
  114. };
  115. <# n=0; #>
  116. <# foreach (ColumnInfo c in host.Fieldlist) { #>
  117. parameters[<#= n #>].Value = model.<#=c.ColumnName#>;<# n=n+1; #>
  118. <# }#>
  119. int rows=<#= host.DbHelperName#>.ExecuteSql(strSql.ToString(),parameters);
  120. if (rows > 0)
  121. {
  122. return true;
  123. }
  124. else
  125. {
  126. return false;
  127. }
  128. }
  129. /// <summary>
  130. /// 删除一条数据
  131. /// </summary>
  132. public bool Delete(<#=CodeCommon.GetInParameter(host.Keys, true)#>)
  133. {
  134. StringBuilder strSql=new StringBuilder();
  135. strSql.Append("delete from <#= host.TableName #> ");
  136. strSql.Append(" where <#= CodeCommon.GetWhereParameterExpression(host.Keys, true, host.DbType)#>");
  137. <#= CodeCommon.GetPreParameter(host.Keys, true, host.DbType) #>
  138. int rows=<#= host.DbHelperName#>.ExecuteSql(strSql.ToString(),parameters);
  139. if (rows > 0)
  140. {
  141. return true;
  142. }
  143. else
  144. {
  145. return false;
  146. }
  147. }
  148. <#if (identityKey!=null) {#>
  149. /// <summary>
  150. /// 批量删除一批数据
  151. /// </summary>
  152. public bool DeleteList(string <#=identityKey.ColumnName#>list )
  153. {
  154. StringBuilder strSql=new StringBuilder();
  155. strSql.Append("delete from <#= host.TableName #> ");
  156. strSql.Append(" where ID in ("+<#=identityKey.ColumnName#>list + ") ");
  157. int rows=<#= host.DbHelperName#>.ExecuteSql(strSql.ToString());
  158. if (rows > 0)
  159. {
  160. return true;
  161. }
  162. else
  163. {
  164. return false;
  165. }
  166. }
  167. <#}#>
  168. /// <summary>
  169. /// 得到一个对象实体
  170. /// </summary>
  171. public <#= ModelSpace #> GetModel(<#= CodeCommon.GetInParameter(host.Keys,true) #>)
  172. {
  173. StringBuilder strSql=new StringBuilder();
  174. strSql.Append("select <# for(int i=0;i< host.Fieldlist.Count;i++) { #><#= host.Fieldlist[i].ColumnName #><# if(i< host.Fieldlist.Count-1 ) {#>,<# } #> <#}#> ");
  175. strSql.Append(" from <#= host.TableName #> ");
  176. strSql.Append(" where <#= CodeCommon.GetWhereParameterExpression(host.Keys, true, host.DbType) #>");
  177. <#=CodeCommon.GetPreParameter(host.Keys, true, host.DbType)#>
  178. <#=ModelSpace#> model=new <#=ModelSpace#>();
  179. DataSet ds=<#= host.DbHelperName#>.Query(strSql.ToString(),parameters);
  180. if(ds.Tables[0].Rows.Count>0)
  181. {
  182. <# foreach (ColumnInfo c in host.Fieldlist) { #>
  183. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="int"||
  184. CodeCommon.DbTypeToCS(c.TypeName)=="long"||
  185. CodeCommon.DbTypeToCS(c.TypeName)=="float"||
  186. CodeCommon.DbTypeToCS(c.TypeName)=="DateTime"||
  187. CodeCommon.DbTypeToCS(c.TypeName)=="decimal")
  188. {#>
  189. if(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString()!="")
  190. {
  191. model.<#=c.ColumnName#>=<#=CodeCommon.DbTypeToCS(c.TypeName)#>.Parse(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString());
  192. }
  193. <# } #>
  194. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="string") {#>
  195. model.<#=c.ColumnName#>= ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString();
  196. <# } #>
  197. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="byte[]") {#>
  198. if(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString()!="")
  199. {
  200. model.<#=c.ColumnName#>= (byte[])ds.Tables[0].Rows[0]["<#=c.ColumnName#>"];
  201. }
  202. <# } #>
  203. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="Guid") {#>
  204. if(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString()!="")
  205. {
  206. model.<#=c.ColumnName#>= ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString();
  207. }
  208. <# } #>
  209. <# if(CodeCommon.DbTypeToCS(c.TypeName)=="bool") {#>
  210. if(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString()!="")
  211. {
  212. if((ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString()=="1")||(ds.Tables[0].Rows[0]["<#=c.ColumnName#>"].ToString().ToLower()=="true"))
  213. {
  214. model.<#=c.ColumnName#>= true;
  215. }
  216. else
  217. {
  218. model.<#=c.ColumnName#>= false;
  219. }
  220. }
  221. <# } #>
  222. <# } #>
  223. return model;
  224. }
  225. else
  226. {
  227. return null;
  228. }
  229. }
  230. /// <summary>
  231. /// 获得数据列表
  232. /// </summary>
  233. public DataSet GetList(string strWhere)
  234. {
  235. StringBuilder strSql=new StringBuilder();
  236. strSql.Append("select * ");
  237. strSql.Append(" FROM <#= host.TableName #> ");
  238. if(strWhere.Trim()!="")
  239. {
  240. strSql.Append(" where "+strWhere);
  241. }
  242. return <#= host.DbHelperName#>.Query(strSql.ToString());
  243. }
  244. /// <summary>
  245. /// 获得前几行数据
  246. /// </summary>
  247. public DataSet GetList(int Top,string strWhere,string filedOrder)
  248. {
  249. StringBuilder strSql=new StringBuilder();
  250. strSql.Append("select ");
  251. if(Top>0)
  252. {
  253. strSql.Append(" top "+Top.ToString());
  254. }
  255. strSql.Append(" * ");
  256. strSql.Append(" FROM <#= host.TableName #> ");
  257. if(strWhere.Trim()!="")
  258. {
  259. strSql.Append(" where "+strWhere);
  260. }
  261. strSql.Append(" order by " + filedOrder);
  262. return <#= host.DbHelperName#>.Query(strSql.ToString());
  263. }
  264. }
  265. }
  266. <#+
  267. int n=0;
  268. #>