Completed
Last Updated: 15 Aug 2017 10:28 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 31 Mar 2017 08:14
Category: Scheduler/Reminder
Type: Bug Report
1
FIX. RadScheduler - Entity Framework business object – not saving appointment upon call to SaveChanges()
Run the attached project and add one appointment. Press the "save" button and restart the application.

Workaround:

private void radButton1_Click(object sender, EventArgs e)
{ 
    Telerik.WinControls.UI.Appointment a = new Telerik.WinControls.UI.Appointment(DateTime.Now, TimeSpan.FromHours(2));
    this.radScheduler1.Appointments.Add(a);
    this.radScheduler1.Appointments.Remove(a);
    dbContext.SaveChanges();
}
Attached Files:
0 comments