Browse Source

-

pull/12/MERGE
sunkaixuan 8 years ago
parent
commit
c274ebe27c
  1. BIN
      .vs/SqlSugar/v14/.suo
  2. 3
      SqlSugar/ExpressionsToSql/ExpTool.cs

BIN
.vs/SqlSugar/v14/.suo

Binary file not shown.

3
SqlSugar/ExpressionsToSql/ExpTool.cs

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

Loading…
Cancel
Save