Create a function that copies the values onto the object and call that function from your ForEach
public void Update(tbl_fl_Services_schedule schedule, string Service_frequency, string Next_Service, string Create_reminder)
{
schedule.Service_frequency = Service_frequency;
schedule.Next_Service = Next_Service;
schedule.Create_reminder = Create_reminder;
}
.ForEach(x => Update(x, Service_frequency, Next_Service, Create_reminder));