Optimize single table read performance

This commit is contained in:
2881099
2022-06-01 14:21:53 +08:00
parent 7290109734
commit 105947c2ed
9 changed files with 139 additions and 219 deletions

View File

@ -34,6 +34,8 @@ namespace FreeSql.MySql
}
return null;
});
Select0Provider._dicMethodDataReaderGetValue[typeof(Guid)] = typeof(DbDataReader).GetMethod("GetGuid", new Type[] { typeof(int) });
}
public override ISelect<T1> CreateSelectProvider<T1>(object dywhere) => new MySqlSelect<T1>(this, this.InternalCommonUtils, this.InternalCommonExpression, dywhere);