SQLServerDAL.cmt 9.6 KB

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