IDAL.cmt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. ColumnInfo identityKey=host.IdentityKey;
  7. string returnValue = "void";
  8. if (identityKey!=null)
  9. {
  10. returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName);
  11. }
  12. #>
  13. using System;
  14. using System.Data;
  15. namespace <#= host.NameSpace #>.IDAL <# if( host.Folder.Length > 0){ #>.<#= host.Folder #><# } #>
  16. {
  17. /// <summary>
  18. /// 接口层<#= host.GetDALClass(host.TableName) #>
  19. /// </summary>
  20. public interface I<#= host.GetDALClass(host.TableName) #>
  21. {
  22. #region 成员方法
  23. /// <summary>
  24. /// 是否存在该记录
  25. /// </summary>
  26. bool Exists(<#= CodeCommon.GetInParameter(host.Keys, false) #>);
  27. /// <summary>
  28. /// 增加一条数据
  29. /// </summary>
  30. <#= returnValue #> Add(<#= ModelSpace #> model);
  31. /// <summary>
  32. /// 更新一条数据
  33. /// </summary>
  34. bool Update(<#= ModelSpace #> model);
  35. /// <summary>
  36. /// 删除数据
  37. /// </summary>
  38. bool Delete(<#=CodeCommon.GetInParameter(host.Keys, true)#>);
  39. <#if (identityKey!=null) {#>
  40. bool DeleteList(string <#=identityKey.ColumnName#>list );
  41. <#}#>
  42. /// <summary>
  43. /// 得到一个对象实体
  44. /// </summary>
  45. <#= ModelSpace #> GetModel(<#= CodeCommon.GetInParameter(host.Keys,true) #>);
  46. /// <summary>
  47. /// 获得数据列表
  48. /// </summary>
  49. DataSet GetList(string strWhere);
  50. /// <summary>
  51. /// 获得前几行数据
  52. /// </summary>
  53. DataSet GetList(int Top,string strWhere,string filedOrder);
  54. /// <summary>
  55. /// 根据分页获得数据列表
  56. /// </summary>
  57. //DataSet GetList(int PageSize,int PageIndex,string strWhere);
  58. #endregion 成员方法
  59. }
  60. }