- 增加 FreeSql.Generator 人大金仓 实体类生成器;#325

This commit is contained in:
28810
2020-05-28 02:05:57 +08:00
parent 815372cb7f
commit 8331f43252
10 changed files with 608 additions and 194 deletions

View File

@ -39,7 +39,6 @@ namespace FreeSql.Odbc.KingbaseES
if (mapType != null && mapType != param.GetType() && (param is IEnumerable == false))
param = Utils.GetDataReaderValue(mapType, param);
bool isdic;
if (param is bool || param is bool?)
return (bool)param ? "'t'" : "'f'";
else if (param is string || param is char)