Bug: distinct top 1

This commit is contained in:
sunkaixuan 2023-05-29 15:51:36 +08:00
parent 494647b0b1
commit ef28d6d955

View File

@ -38,6 +38,10 @@ namespace SqlSugar
result =this.Context.SqlQueryable<object>(result).Skip(Skip??0).Take(Take??0).ToSql().Key; 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) if (result.IndexOf("-- No table") > 0)
{ {