- 修复 IN 查询区分 varchar/nvarchar;

This commit is contained in:
2881099
2022-05-23 13:19:59 +08:00
parent 3a1fb27af6
commit f756b56aa0
22 changed files with 51 additions and 0 deletions

View File

@ -123,7 +123,9 @@ namespace FreeSql.Odbc.Oracle
var args1 = getExp(callExp.Arguments[argIndex]);
var oldMapType = tsc.SetMapTypeReturnOld(tsc.mapTypeTmp);
//var oldDbParams = tsc.SetDbParamsReturnOld(null); #900 UseGenerateCommandParameterWithLambda(true) 子查询 bug
tsc.isNotSetMapColumnTmp = true;
var left = objExp == null ? null : getExp(objExp);
tsc.isNotSetMapColumnTmp = false;
tsc.SetMapColumnTmp(null).SetMapTypeReturnOld(oldMapType);
//tsc.SetDbParamsReturnOld(oldDbParams);
switch (callExp.Method.Name)