Synchronization code

This commit is contained in:
sunkaixuan 2023-06-15 11:18:40 +08:00
parent 94b37c8357
commit 2ff0ab993d

View File

@ -48,6 +48,11 @@ namespace SqlSugar
{
base.AppendFilter();
string oldOrderValue = this.OrderByValue;
var isNullOrderValue = Skip == 0 && Take == 1 && oldOrderValue == "ORDER BY NOW() ";
if (isNullOrderValue)
{
this.OrderByValue = null;
}
string result = null;
sql = new StringBuilder();
sql.AppendFormat(SqlTemplate, GetSelectValue, GetTableNameString, GetWhereValueString, GetGroupByString + HavingInfos, (Skip != null || Take != null) ? null : GetOrderByString);