Model.cmt 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
  6. #>
  7. using System;
  8. using System.Text;
  9. using System.Collections.Generic;
  10. using System.Data;
  11. namespace <#= host.NameSpace #>.Model<# if( host.Folder.Length > 0) {#>.<#= host.Folder #><# } #>
  12. {
  13. <# if( host.TableDescription.Length > 0) {#>
  14. //<#= host.TableDescription #>
  15. <# } #>
  16. public class <#= host.GetModelClass(host.TableName) #>
  17. {
  18. <# foreach (ColumnInfo c in host.Fieldlist)
  19. { #>/// <summary>
  20. /// <#= string.IsNullOrEmpty(c.Description) ? c.ColumnName : c.Description #>
  21. /// </summary>
  22. private <#= CodeCommon.DbTypeToCS(c.TypeName) #> _<#= c.ColumnName.ToString().ToLower() #>;
  23. public <#= CodeCommon.DbTypeToCS(c.TypeName) #> <#= c.ColumnName #>
  24. {
  25. get{ return _<#= c.ColumnName.ToString().ToLower()#>; }
  26. set{ _<#= c.ColumnName.ToString().ToLower() #> = value; }
  27. }
  28. <# } #>
  29. }
  30. }