|
@ -58,7 +58,15 @@ namespace SqlSugar |
|
|
base.Expression = memberAssignment.Expression; |
|
|
base.Expression = memberAssignment.Expression; |
|
|
base.Start(); |
|
|
base.Start(); |
|
|
} |
|
|
} |
|
|
else { |
|
|
else if (item is BinaryExpression) |
|
|
|
|
|
{ |
|
|
|
|
|
base.Expression = item; |
|
|
|
|
|
parameter.CommonTempData = "simple"; |
|
|
|
|
|
base.Start(); |
|
|
|
|
|
parameter.CommonTempData = null; |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
Check.ThrowNotSupportedException(item.GetType().Name); |
|
|
Check.ThrowNotSupportedException(item.GetType().Name); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|