Skip to content

Commit

Permalink
Fix NRE in EF Core (#1135).
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Oct 1, 2023
1 parent e80871c commit 674f1c0
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,6 @@ protected override void Dispose(bool disposing)
_disposed = true;
Close();
_innerConnection = null;
_options = null;
_connectionString = null;
}
}
base.Dispose(disposing);
Expand All @@ -325,8 +323,6 @@ public override async ValueTask DisposeAsync()
_disposed = true;
await CloseAsync().ConfigureAwait(false);
_innerConnection = null;
_options = null;
_connectionString = null;
}
await base.DisposeAsync().ConfigureAwait(false);
}
Expand Down

0 comments on commit 674f1c0

Please sign in to comment.