调用存储过程DAL.cmt 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. ProcedureHost host = (ProcedureHost)(Host);
  5. ColumnInfo OutParameter = host.OutParameter;
  6. string returnValue = "bool";
  7. if (OutParameter!=null)
  8. {
  9. returnValue = CodeCommon.DbTypeToCS(OutParameter.TypeName);
  10. }
  11. #>
  12. /* 生成存储过程的调用代码 , 只对存储过程有效*/
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public <#=returnValue#> <#= host.ProcedureName #>(<# for(int i=0;i< host.Parameterlist.Count;i++) { #><#= CodeCommon.DbTypeToCS(host.Parameterlist[i].TypeName)#> <#=host.Parameterlist[i].ColumnName.Replace("@","")#><# if(i< host.Parameterlist.Count-1 ) {#>,<# } #> <#}#> )
  17. {
  18. int rowsAffected;
  19. SqlParameter[] parameters = {
  20. <# for(int i=0;i< host.Parameterlist.Count;i++) { #>
  21. new SqlParameter("<#=host.Parameterlist[i].ColumnName#>", SqlDbType.VarChar,50)<# if(i< host.Parameterlist.Count-1 ) {#>,<# } #>
  22. <#}#>
  23. };
  24. <# for(int i=0;i< host.Parameterlist.Count;i++) { #>
  25. <# if(host.Parameterlist[i].Description=="isoutparam") { outIndex=i.ToString(); #>
  26. parameters[<#=i#>].Value = ParameterDirection.Output;
  27. <#} else {#>
  28. parameters[<#=i#>].Value = <#=host.Parameterlist[i].ColumnName.Replace("@","") #>;
  29. <#}}#>
  30. DbHelperSQL.RunProcedure("<#= host.ProcedureName #>",parameters,out rowsAffected);
  31. <# if (OutParameter!=null) { #>
  32. return (<#=returnValue#>)parameters[<#=outIndex#>].Value;
  33. <#} else {#>
  34. if (rowsAffected > 0)
  35. {
  36. return true;
  37. }
  38. else
  39. {
  40. return false;
  41. }
  42. <#}#>}
  43. <#+
  44. string outIndex ="0";
  45. #>