mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-03 20:27:56 +08:00
Performance optimization
This commit is contained in:
parent
440d099102
commit
f280126d69
@ -681,7 +681,9 @@ namespace SqlSugar
|
||||
{
|
||||
Async();
|
||||
//False asynchrony . No Support DataSet
|
||||
return Task.FromResult(GetDataSetAll(sql, parameters));
|
||||
return Task.Run(() => {
|
||||
return GetDataSetAll(sql, parameters);
|
||||
});
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user