- 修复 InsertDict 部分新功能遗留问题(特别是 Oracle);

This commit is contained in:
2881099
2022-04-09 22:40:52 +08:00
parent b9a21f6c11
commit ecd27fb3ae
28 changed files with 69 additions and 52 deletions

View File

@ -46,7 +46,10 @@ namespace FreeSql.MySql
if (value != null) ret.Value = (value as MygisGeometry).AsText();
}
else
ret.MySqlDbType = dbtype ?? default;
{
if (dbtype != null)
ret.MySqlDbType = dbtype.Value;
}
_params?.Add(ret);
return ret;
}