public void RemoveWorkout(int id) { Workout w = ctx.Workouts.Find(id); ctx.Entry(w).State = EntityState.Deleted; ctx.SaveChanges(); }
public void UpdateGebruiker(Gebruiker gebruiker) { ctx.Entry(gebruiker).State = System.Data.Entity.EntityState.Modified; ctx.SaveChanges(); }