예제 #1
0
 public void Dispose()
 {
     if (_context != null)
     {
         _context.Dispose();
     }
 }
예제 #2
0
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         db.Dispose();
     }
     base.Dispose(disposing);
 }
예제 #3
0
 protected virtual void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (_context != null)
         {
             _context.Dispose();
             _context = null;
         }
     }
 }
예제 #4
0
 public void Dispose()
 {
     _context.Dispose();
 }