protected virtual void Dispose(bool disposing) { if (!this.disposed) { if (disposing) { context.Dispose(); } } this.disposed = true; }
protected virtual void Dispose(bool disposing) { if (!this.disposed) { if (disposing) { if (_dbContext != null) { _dbContext.Dispose(); } } } this.disposed = true; }