mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-18 20:08:15 +08:00
- 修复 InsertDict 部分新功能遗留问题(特别是 Oracle);
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user