public void Delete(int id) { Team team = new Team { Id = id }; context.DetachLocal(team); context.Team.Remove(team); }
public void Delete(int id) { Footballer footballer = new Footballer { Id = id }; context.DetachLocal(footballer); context.Footballer.Remove(footballer); }