mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-31 15:56:25 +08:00
Update SqlQueryable(sql) offsetpage bug
This commit is contained in:
parent
4732d44b79
commit
e32ac64207
@ -78,8 +78,13 @@ namespace SqlSugar
|
||||
if (this.OrderByValue.IsNullOrEmpty())
|
||||
{
|
||||
result += " ORDER BY GETDATE() ";
|
||||
if(this.OldSql.HasValue())
|
||||
this.OldSql += " ORDER BY GETDATE() ";
|
||||
}
|
||||
result += this.Offset;
|
||||
|
||||
if (this.OldSql.HasValue())
|
||||
this.OldSql += this.Offset;
|
||||
}
|
||||
result = GetSqlQuerySql(result);
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user