示例#1
0
 public void RemoveGame(Game game)
 {
     using (CAAContext context = new CAAContext())
     {
         context.Remove(game);
         context.SaveChanges();
     }
 }