Update Aot

This commit is contained in:
sunkaixuan 2023-11-20 05:56:04 +08:00
parent 7d454bd400
commit 508d2f9552

View File

@ -439,7 +439,7 @@ namespace SqlSugar
private Dictionary<string, object> DataReaderToList<T>(IDataReader reader, Type tType, List<PropertyInfo> classProperties, List<T> reval)
{
var readerValues = DataReaderToDictionary(reader, tType);
var mappingKeys = this.QueryBuilder.MappingKeys;
var mappingKeys = this.QueryBuilder?.MappingKeys;
var result = new Dictionary<string, object>();
foreach (var item in classProperties)
{