コード例 #1
0
 public void Dispose()
 {
     if (_context != null)
     {
         _context.Dispose();
         _context = null;
     }
 }
コード例 #2
0
 public Repository()
 {
     _context = new YummyDBEntities();
     _context.Configuration.ProxyCreationEnabled = false;
 }