mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Bug: Subquery.ToList
This commit is contained in:
parent
5f97a57a11
commit
3bb1db7d34
@ -1412,6 +1412,10 @@ namespace SqlSugar
|
||||
|
||||
private void _SubQuery<TResult>(List<TResult> result)
|
||||
{
|
||||
if (result == null || result.Count == 0)
|
||||
{
|
||||
return;
|
||||
}
|
||||
var isSubToList = this.QueryBuilder.SubToListParameters != null && this.QueryBuilder.SubToListParameters.Any();
|
||||
if (!isSubToList)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user