mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-10-15 18:55:07 +08:00
Synchronization code
This commit is contained in:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user