- 修复 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

@ -1753,6 +1753,7 @@ namespace FreeSql.Internal
public Type mapType { get; set; }
public Type mapTypeTmp { get; set; }
public ColumnInfo mapColumnTmp { get; set; }
public bool isNotSetMapColumnTmp { get; set; }
public TableInfo currentTable { get; set; }
public List<GlobalFilter.Item> whereGlobalFilter { get; set; }
public List<DbParameter> dbParams { get; set; }
@ -1760,6 +1761,7 @@ namespace FreeSql.Internal
public ExpTSC SetMapColumnTmp(ColumnInfo col)
{
if (isNotSetMapColumnTmp) return this;
if (col == null)
{
this.mapTypeTmp = null;