diff --git a/GBase/GBase.cs b/GBase/GBase.cs index 60a17d0..0bf717e 100644 --- a/GBase/GBase.cs +++ b/GBase/GBase.cs @@ -119,6 +119,11 @@ namespace GBase /// A to await public async ValueTask DisposeAsync() { + foreach (var table in Tables) + { + await table.DisposeAsync(); + } + Tables.Clear(); } }