示例#1
0
        public static string FormatSelectSql(this ISqlFormatter formatter, string tableOrView, string fields, string condition)
        {
            string selectSqlTemplate = formatter.GetSelectSqlTemplate();
            string str2 = "";

            return(string.Format(selectSqlTemplate, new object[] { fields, tableOrView, str2, condition }));
        }