예제 #1
0
 public void DeleteTripById(int id)
 {
     _context.Remove(_context.Trips.Where(w => w.Id == id).FirstOrDefault());
 }