- 修复 InsertOrUpdateDict 异常;#1067

This commit is contained in:
2881099
2022-04-11 13:23:38 +08:00
parent ecd27fb3ae
commit 7c2b7ea5ef
21 changed files with 331 additions and 41 deletions

View File

@ -37,6 +37,7 @@ namespace FreeSql.Sqlite.Curd
.NoneParameter(true) as Internal.CommonProvider.InsertProvider<T1>;
insert._noneParameterFlag = flagInsert ? "c" : "cu";
insert._source = data;
insert._table = _table;
string sql = "";
if (IdentityColumn != null && flagInsert) sql = insert.ToSql();