<#@ template language="c#" HostSpecific="True" #> <#@ output extension= ".cs" #> <# TableHost host = (TableHost)(Host); string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName); ColumnInfo identityKey=host.IdentityKey; string returnValue = "void"; if (identityKey!=null) { returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName); } #> using System; using System.Data; namespace <#= host.NameSpace #>.IDAL <# if( host.Folder.Length > 0){ #>.<#= host.Folder #><# } #> { /// /// 接口层<#= host.GetDALClass(host.TableName) #> /// public interface I<#= host.GetDALClass(host.TableName) #> { #region 成员方法 /// /// 是否存在该记录 /// bool Exists(<#= CodeCommon.GetInParameter(host.Keys, false) #>); /// /// 增加一条数据 /// <#= returnValue #> Add(<#= ModelSpace #> model); /// /// 更新一条数据 /// bool Update(<#= ModelSpace #> model); /// /// 删除数据 /// bool Delete(<#=CodeCommon.GetInParameter(host.Keys, true)#>); <#if (identityKey!=null) {#> bool DeleteList(string <#=identityKey.ColumnName#>list ); <#}#> /// /// 得到一个对象实体 /// <#= ModelSpace #> GetModel(<#= CodeCommon.GetInParameter(host.Keys,true) #>); /// /// 获得数据列表 /// DataSet GetList(string strWhere); /// /// 获得前几行数据 /// DataSet GetList(int Top,string strWhere,string filedOrder); /// /// 根据分页获得数据列表 /// //DataSet GetList(int PageSize,int PageIndex,string strWhere); #endregion 成员方法 } }