This commit is contained in:
sunkaixuan 2017-01-08 00:41:37 +08:00
parent 99c3d54d33
commit c274ebe27c
2 changed files with 1 additions and 2 deletions

Binary file not shown.

View File

@ -41,8 +41,7 @@ namespace SqlSugar
case ExpressionType.MultiplyChecked: case ExpressionType.MultiplyChecked:
return "*"; return "*";
default: default:
Check.ThrowNotSupportedException(string.Format(ErrorMessage.OperatorError, expressiontype.ToString())); throw new NotSupportedException(string.Format(ErrorMessage.OperatorError, expressiontype.ToString()));
return null;
} }
} }
} }