System.Sql.SqlBuilder.And C# (CSharp) 메소드

And() 공개 정적인 메소드

public static And ( this sql ) : string
sql this
리턴 string
        public static string And(this string sql)
        {
            return sql.Append(" AND ");
        }