This commit is contained in:
sunkaixuan
2017-09-17 00:43:29 +08:00
parent e7ddef1bee
commit b062f5a23b
2 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ namespace SqlSugar
{ {
hasWhere = true; hasWhere = true;
} }
else else if(item is SubWhere)
{ {
item = SubTools.SubItems.First(s => s is SubAnd); item = SubTools.SubItems.First(s => s is SubAnd);
} }

View File

@@ -1,5 +1,4 @@
using SqlSugar.ExpressionsToSql.Subquery; using System;
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Linq.Expressions; using System.Linq.Expressions;
@@ -13,6 +12,7 @@ namespace SqlSugar
{ {
new SubSelect(), new SubSelect(),
new SubWhere(), new SubWhere(),
new SubAnd(),
new SubAny(), new SubAny(),
new SubNotAny(), new SubNotAny(),
new SubBegin(), new SubBegin(),