Update core

This commit is contained in:
sunkaixuan 2022-03-21 15:22:46 +08:00
parent be1b8c6d99
commit 988e463fbe
2 changed files with 12 additions and 2 deletions

View File

@ -427,7 +427,10 @@ namespace SqlSugar
public virtual string ToCountSql(string sql)
{
if (sql != null && sql.Contains("-- No table"))
{
return "-- No table";
}
return string.Format(" SELECT COUNT(1) FROM ({0}) CountTable ", sql);
}

View File

@ -71,7 +71,14 @@ namespace SqlSugar
string result = null;
sql = new StringBuilder();
sql.AppendFormat(SqlTemplate, "Count(*)", GetTableNameString, GetWhereValueString, GetGroupByString + HavingInfos, (Skip != null || Take != null) ? null : GetOrderByString);
if (IsCount) { return sql.ToString(); }
if (IsCount)
{
if (sql.ToString().Contains("-- No table"))
{
return "-- No table";
}
return sql.ToString();
}
if (Skip != null && Take == null)
{
if (this.OrderByValue == "ORDER BY ") this.OrderByValue += GetSelectValue.Split(',')[0];