mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 04:35:29 +08:00
Synchronization code
This commit is contained in:
parent
ef28d6d955
commit
74a56f3619
@ -38,6 +38,10 @@ namespace SqlSugar
|
||||
result =this.Context.SqlQueryable<object>(result).Skip(Skip??0).Take(Take??0).ToSql().Key;
|
||||
|
||||
|
||||
}
|
||||
if (IsDistinct && oldTake == 1 && oldSkip == null)
|
||||
{
|
||||
result = result.Replace(" TOP 1 DISTINCT", " TOP 1 ");
|
||||
}
|
||||
if (result.IndexOf("-- No table") > 0)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user