CodeSmith6.5 Exists

<%@ CodeTemplate Language="C#" TargetLanguage="C#" Debug="False" Description="Template description here." %>
<%@ Property Name="SourceTable" Type="SchemaExplorer.TableSchema"  Category="数据库表"  Optional="True" Description="the table name"   %>
<%@ Assembly Name="SchemaExplorer" %>
<%@ Import Namespace="SchemaExplorer" %>
<%@ Assembly Name="CodeSmith.BaseTemplates" %>
<%@ Import Namespace="CodeSmith.BaseTemplates" %>
<%@ Assembly Name="CodeSmith.CustomProperties" %>
<%@ Import Namespace="CodeSmith.CustomProperties" %>
<%@ Property Name="ConnectionTypeName" Type="ConnectionType" Category="数据源连接类型" %>
<%@ Map Name="CSharpAlias" Src="System-CSharpAlias" %>

<script runat="template">
public enum ConnectionType
{
    SqlHelper,
    MySqlHelper,
    OleDbHelper
}
public string GetParameterTypeName()
{
    switch(ConnectionTypeName)
    {
        case ConnectionType.SqlHelper:return "SqlParameter";
        case ConnectionType.MySqlHelper:return "MySqlParameter";
        case ConnectionType.OleDbHelper:return "OleDbParameter";
        default:return "SqlParameter";
    }
}
</script>
public bool Exists(<%=CSharpAlias[this.SourceTable.Columns[0].SystemType.FullName] %> <%=this.SourceTable.Columns[0].Name %>)
{
    <%  string cols=string.Empty;
        foreach(ColumnSchema col in this.SourceTable.Columns)
        {
            cols+=col.Name+",";
        }
        cols=cols.Remove(cols.Length-1);
        string[] strParamNames=cols.Split(',');
    %>
    StringBuilder commandText=new StringBuilder();
    commandText.Append("select count(*) from <%=this.SourceTable.Name %>");
    commandText.Append(" where <%=strParamNames[0] %>=@<%=strParamNames[0] %>");
    <%=GetParameterTypeName() %>[] commandParameters = {
            new <%=GetParameterTypeName() %>("@<%=strParamNames[0] %>", <%=this.SourceTable.Columns[0].Name %>)    
            };

    return Convert.ToInt32(DBUtility.SqlHelper.ExecuteScalar(commandText.ToString(), commandParameters)) > 0;
}

 

转载于:https://www.cnblogs.com/xinzheng/p/4488132.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值