zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    C++ Sqlite3的基本使用
    DirectX11 初探XMVECOTR&XMMATRIX
    lib和dll文件的初了解
    游戏设计模式——C++单例类
    C++11智能指针的深度理解
    你的文章里为什么不放源码Github链接了
    堡垒机的核心武器:WebSSH录像实现
    Asciinema文章勘误及Web端使用介绍
    Asciinema:你的所有操作都将被录制
    Django实现WebSSH操作物理机或虚拟机
  • 原文地址:https://www.cnblogs.com/xinzheng/p/4488132.html
Copyright © 2011-2022 走看看