protected virtual void Dispose(bool disposing)
 {
     if (!this._disposed)
     {
         if (disposing)
         {
             _context.Dispose();
         }
     }
     this._disposed = true;
 }