protected virtual void Dispose(bool disposing) { if (disposing) { _context.Dispose(); } }
protected override void Dispose(bool disposing) { if (disposing) { db.Dispose(); } base.Dispose(disposing); }
protected override void Dispose(bool disposing) { if (disposing) { _dbContext.Dispose(); } base.Dispose(disposing); }
/// <summary> /// Releases all resource used by the <see cref="T:Calculator.DALC.Repositories.OperationRepository"/> object. /// </summary> /// <remarks>Call <see cref="Dispose"/> when you are finished using the /// <see cref="T:Calculator.DALC.Repositories.OperationRepository"/>. The <see cref="Dispose"/> method leaves /// the <see cref="T:Calculator.DALC.Repositories.OperationRepository"/> in an unusable state. After calling /// <see cref="Dispose"/>, you must release all references to the /// <see cref="T:Calculator.DALC.Repositories.OperationRepository"/> so the garbage collector can reclaim the /// memory that the <see cref="T:Calculator.DALC.Repositories.OperationRepository"/> was occupying.</remarks> public void Dispose() { _context.Dispose(); }