mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
- 修复 InsertDict 部分新功能遗留问题(特别是 Oracle);
This commit is contained in:
@ -44,7 +44,8 @@ namespace FreeSql.MySql
|
||||
}
|
||||
else
|
||||
{
|
||||
ret.MySqlDbType = dbtype ?? default;
|
||||
if (dbtype != null)
|
||||
ret.MySqlDbType = dbtype.Value;
|
||||
if (ret.MySqlDbType == MySqlDbType.Enum && value != null)
|
||||
ret.Value = EnumValueToMySql(value);
|
||||
}
|
||||
|
Reference in New Issue
Block a user