- 增加 fsql.Insert(Dictionary<string, object>) 无实体类插入方法;#481

This commit is contained in:
2881099
2022-03-24 18:06:54 +08:00
parent 56ce675b65
commit dc688adc11
47 changed files with 416 additions and 80 deletions

View File

@ -28,7 +28,7 @@ namespace FreeSql.GBase
{
var dbtype = column.DbTypeText;
OdbcType ret = OdbcType.VarChar;
switch (dbtype.ToLower().TrimStart('_'))
switch (dbtype?.ToLower().TrimStart('_'))
{
case "int8":
case "serial8":