示例#1
0
 public bool DeleteGameRoomPref(int roomId)
 {
     try
     {
         using (connectionsLinqDataContext db = new connectionsLinqDataContext())
         {
             db.DeleteGameRoomPref(roomId);
             return(true);
         }
     }
     catch (Exception e)
     {
         return(false);
     }
 }