This example demonstrates a simple application that enables end-users to add new appointments, modify existing appointments and delete them if necessary.
This project is created by following the step-by-step guide of the Lesson 2 - Implement Insert-Update-Delete Appointment Functionality.
See also the E3997: Scheduler - Lesson 3 - How to Use Scheduler in complex views.
Question Comments
Added By: John John Smith at: 4/3/2015 6:15:10 PM
If you're using Entity Framework. Try doing this instead:
DBAppointment[] insertedAppt = SchedulerExtension.GetAppointmentToInsert<DBAppointment>(SchedulerSettingsHelper.CommonSchedulerSettings,
SchedulerDataHelper.GetAppointments(), SchedulerDataHelper.GetResources());
SchedulerDataHelper.InsertAppointment(insertedAppt.FirstOrDefault());