mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
Update Subquery.ToList
This commit is contained in:
parent
78874a172c
commit
c3e02b3ee7
@ -97,6 +97,10 @@ namespace SqlSugar.ClickHouse
|
|||||||
{
|
{
|
||||||
result = "distinct "+result;
|
result = "distinct "+result;
|
||||||
}
|
}
|
||||||
|
if (this.SubToListParameters != null && this.SubToListParameters.Any())
|
||||||
|
{
|
||||||
|
result = SubToListMethod(result);
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,6 +151,10 @@ namespace SqlSugar.GBase
|
|||||||
{
|
{
|
||||||
result = " DISTINCT " + result;
|
result = " DISTINCT " + result;
|
||||||
}
|
}
|
||||||
|
if (this.SubToListParameters != null && this.SubToListParameters.Any())
|
||||||
|
{
|
||||||
|
result = SubToListMethod(result);
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,6 +151,10 @@ namespace SqlSugar.Odbc
|
|||||||
{
|
{
|
||||||
result = " DISTINCT " + result;
|
result = " DISTINCT " + result;
|
||||||
}
|
}
|
||||||
|
if (this.SubToListParameters != null && this.SubToListParameters.Any())
|
||||||
|
{
|
||||||
|
result = SubToListMethod(result);
|
||||||
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user