rename DbContext Internal Method

This commit is contained in:
28810
2020-04-11 12:02:50 +08:00
parent 0154600d0a
commit bd79fc803e
9 changed files with 140 additions and 125 deletions

View File

@ -76,14 +76,14 @@ namespace FreeSql
}
public override int SaveChanges()
{
ExecCommand();
FlushCommand();
return SaveChangesSuccess();
}
#if net40
#else
async public override Task<int> SaveChangesAsync()
{
await ExecCommandAsync();
await FlushCommandAsync();
return SaveChangesSuccess();
}
#endif