Skip to content

Commit 674f1c0

Browse files
committed
Fix NRE in EF Core (#1135).
1 parent e80871c commit 674f1c0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/FirebirdSql.Data.FirebirdClient/FirebirdClient/FbConnection.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,6 @@ protected override void Dispose(bool disposing)
311311
_disposed = true;
312312
Close();
313313
_innerConnection = null;
314-
_options = null;
315-
_connectionString = null;
316314
}
317315
}
318316
base.Dispose(disposing);
@@ -325,8 +323,6 @@ public override async ValueTask DisposeAsync()
325323
_disposed = true;
326324
await CloseAsync().ConfigureAwait(false);
327325
_innerConnection = null;
328-
_options = null;
329-
_connectionString = null;
330326
}
331327
await base.DisposeAsync().ConfigureAwait(false);
332328
}

0 commit comments

Comments
 (0)