- 完善 InsertDict 等字典操作功能;

This commit is contained in:
2881099
2022-03-29 20:40:00 +08:00
parent 4cf47488d4
commit 5b65a17be0
4 changed files with 25 additions and 11 deletions

View File

@ -1507,7 +1507,7 @@ namespace FreeSql.Internal
), new[] { typeExp, indexesExp, rowExp, dataIndexExp, commonUtilExp }).Compile();
}
if (type == typeof(object) && indexes != null)
if (type == typeof(object) && indexes != null || type == typeof(Dictionary<string, object>))
{
Func<Type, int[], DbDataReader, int, CommonUtils, RowInfo> dynamicFunc = (type2, indexes2, row2, dataindex2, commonUtils2) =>
{