XmlMapping.cmt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <#@ template language="C#" HostSpecific="True" #>
  2. <#@ output extension= ".hbm.xml" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
  6. //Nhibernate 代码自动生成模板 1.0
  7. //作者:MythXin
  8. //blog:www.cnblogs.com/MythXin
  9. //XML映射代码自动生成模板
  10. #>
  11. <?xml version="1.0" encoding="utf-8" ?>
  12. <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="<#= host.NameSpace #>" namespace="<#= host.NameSpace #>">
  13. <class name="<#= host.NameSpace #>.Entity<# if( host.Folder.Length > 0) {#>.<#= host.Folder #><# } #>.<#= host.GetModelClass(host.TableName) #>, <#= host.NameSpace #>" table="<#= host.TableName #>">
  14. <# if(host.Keys.Count>1)
  15. { #><composite-id>
  16. <# foreach (ColumnInfo k in host.Keys){
  17. #><key-property name="<#= k.ColumnName #>" column="<#= k.ColumnName #>" type="<#= CodeCommon.DbTypeToCS(k.TypeName) #>" <#
  18. if(k.IsIdentity){ #> insert="false" update="false"<# } #> />
  19. <# } #>
  20. </composite-id>
  21. <# } else if (host.Keys.Count==1)
  22. { #><id name="<#= host.Keys[0].ColumnName #>" column="<#= host.Keys[0].ColumnName #>" type="<#= CodeCommon.DbTypeToCS(host.Keys[0].TypeName) #>" unsaved-value="0">
  23. <# if(host.Keys[0].IsIdentity) { #><generator class="native" /> <# } #>
  24. </id><# } #>
  25. <# foreach (ColumnInfo c in host.Fieldlist)
  26. { #><# if(!c.IsPrimaryKey){ #><property name="<#= c.ColumnName #>" column="<#= c.ColumnName #>" type="<#= CodeCommon.DbTypeToCS(c.TypeName) #>" <#
  27. if(c.IsIdentity){ #> insert="false" update="false"<# } #> />
  28. <# } #><# } #>
  29. </class>
  30. </hibernate-mapping>