Host对象示例.cmt 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
  6. ColumnInfo identityKey=host.IdentityKey;
  7. #>
  8. 数据库名:<#= host.DbName #>
  9. 数据库类型:<#= host.DbType #>
  10. 表名:<#= host.TableName #>
  11. 表描述:<#= host.TableDescription #>
  12. 数据库访问类名:<#= host.DbHelperName #>
  13. 项目名称:<#= host.ProjectName #>
  14. 存储过程前缀:<#= host.ProcPrefix #>
  15. 类命名规则:<#= host.TabNameRule #>
  16. 数据库DbType类名:<#= host.DbParaDbType #>
  17. 存储过程参数符号:<#= host.preParameter #>
  18. 表集合:
  19. <# foreach (TableInfo tab in host.TableList)
  20. {
  21. WriteLine(tab.TabName);
  22. } #>
  23. 字段集合:
  24. <# foreach (ColumnInfo c in host.Fieldlist)
  25. {
  26. WriteLine("public {0} {1} {{ get; set; }}",CodeCommon.DbTypeToCS(c.TypeName),c.ColumnName );
  27. } #>
  28. 主键字段集合集合:
  29. <# foreach (ColumnInfo c in host.Keys)
  30. {
  31. WriteLine("public {0} {1} {{ get; set; }}",CodeCommon.DbTypeToCS(c.TypeName),c.ColumnName );
  32. } #>
  33. 外键字段集合集合:
  34. <# foreach (ColumnInfo c in host.FKeys)
  35. {
  36. WriteLine("public {0} {1} {{ get; set; }}",CodeCommon.DbTypeToCS(c.TypeName),c.ColumnName );
  37. } #>
  38. Model类名:<#= host.GetModelClass(host.TableName) #>
  39. BLL类名:<#= host.GetBLLClass(host.TableName) #>
  40. DAL类名:<#= host.GetDALClass(host.TableName) #>
  41. <#= CodeCommon.DbParaDbType(host.DbType) #>
  42. <#= CodeCommon.preParameter(host.DbType) #>
  43. <#= CodeCommon.GetWhereParameterExpression(host.Keys,true,host.DbType) #>
  44. <#= CodeCommon.GetPreParameter(host.Keys,true,host.DbType) #>
  45. <#= CodeCommon.GetInParameter(host.Keys,true) #>
  46. <#= CodeCommon.GetFieldstrlist(host.Keys,true) #>
  47. <#= CodeCommon.GetWhereExpression(host.Keys,true) #>