动软Model模板_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 动软Model模板

动软Model模板

 2013/10/26 12:44:48  wentian  博客园  我要评论(0)
  • 摘要:<#@templatelanguage="c#"HostSpecific="True"#><#@outputextension=".cs"#><#TableHosthost=(TableHost)(Host);host.Fieldlist.Sort(CodeCommon.CompareByintOrder);#>usingSystem;usingSystem.Collections.Generic;namespace<#=host
  • 标签:模板
class="brush:csharp;gutter:true;"><#@ template language="c#" HostSpecific="True" #>
<#@ output extension= ".cs" #>
<#
	TableHost host = (TableHost)(Host);
	host.Fieldlist.Sort(CodeCommon.CompareByintOrder);
#>
using System;
using System.Collections.Generic;

namespace <#= host.NameSpace #>.Model<# if( host.Folder.Length > 0) {#>.<#= host.Folder #><# } #>

{
	public class <#= host.GetModelClass(host.TableName) #>
	{
	<# foreach (ColumnInfo c in host.Fieldlist)
	{ #>
	public <#= CodeCommon.DbTypeToCS(c.TypeName) #> <#= c.ColumnName #>{ get; set; }
	<# } #>
}
}

  

发表评论
用户名: 匿名